Jump to content

THOR

Members
  • Posts

    192
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by THOR

  1. My npc_trainer and page_text dump from WoWHeadParser
  2. Is Free PHP video tutorials Looking for our collection of over 250 free video tutorials? Start here
  3. WoWFailureCMS <- Google NEW: Advanced WebsiteCMS for World of Warcraft Private Servers. Based on TrinityCore, Mangos, SkyfireEMU & VoragineCore. Easy to setup and easy to use! A nice Blizzlike Website. Link Removed by AlterEgo. Much as I love the work you did I can't allow your link because it contains copyrighted images. Try Google search for WoWFailureCMS
  4. Global Privileges Global privileges are administrative or apply to all databases on a given server. To assign global privileges, use ON *.* syntax: GRANT ALL ON *.* TO 'SomeMysqlUser'@'somehost'; or GRANT ALL PRIVILEGES ON *.* TO 'YourMysqlUserName'@'YourIP' IDENTIFIED BY "YourMysqlPassword"; Example: GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY "*****"; __________________________________________
  5. Start MySQL 5.5 Command Line ClientAt the command prompt, execute the foll. command mysql> show variables like 'max_allowed_packet'; At the command prompt, execute the foll. command mysql> set global max_allowed_packet = 130 * 1024 * 1024; ExitStart MySQL 5.5 Command Line ClientAt the command prompt, execute the foll. command mysql> show variables like 'max_allowed_packet'; This will set the global max packet size to 130 MB. All subsequent MySQL client connections will get this value as their session value for max packet Now: Source Database : information_schema `GLOBAL_VARIABLES` VALUES ('MAX_ALLOWED_PACKET', '136314880');
  6. but It is very good for learning. (C++, SQL, MySQL, PHP, XHTLM, HTML, JAVA, ...)
  7. I know http://www.oracle.com/technetwork/java/javase/downloads/index.html
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.