Jump to content
TrinityCore

Guybrush

Members
  • Posts

    402
  • Joined

  • Last visited

  • Days Won

    19

Posts posted by Guybrush

  1. and what should i do if the first statement from the create_mysql.sql isn't working?

     

    Depending on what the query is, you can simply remove it and reexecute the SQL.

     

    You do not need to use a specific username for your db user, so long as the credentials you're giving to auth conf and world conf are the same credentials you used when you created the db user.

  2. thanks.

     

     

    i cant Execute.

     

    Remove the first line (the one that does the ALTER table) in the SQL you're trying to run, and then run it again.

     

    OR

     

    Just run this query...

     
    DROP TABLE IF EXISTS ip2nation;
    CREATE TABLE ip2nation (
      ip int(11) unsigned NOT NULL default '0',
      country char(2) NOT NULL default '',
      KEY ip (ip)
    );
     
    DROP TABLE IF EXISTS ip2nationCountries;
    CREATE TABLE ip2nationCountries (
      code varchar(4) NOT NULL default '',
      iso_code_2 varchar(2) NOT NULL default '',
      iso_code_3 varchar(3) default '',
      iso_country varchar(255) NOT NULL default '',
      country varchar(255) NOT NULL default '',
      lat float NOT NULL default '0',
      lon float NOT NULL default '0',
      PRIMARY KEY (code),
      KEY code (code)
    );
    
  3. Huh? Solved?

     

     

    Table '3-auth.ip2nationcountries' doesn't exist

     

    You missed the latest auth update. Check source/sql/updates/auth

     

     

    https://github.com/TrinityCore/TrinityCore/commit/7542049eba46205572b9c9498d6891df31d0ca5b  -- https://github.com/TrinityCore/TrinityCore/blob/master/sql/updates/auth/2013_04_22_00_auth_misc.sql

     

    Read the errors you're having more thoroughly. 9.9/10 chance the error will tell you exactly what's wrong with the hope that you're capable of resolving the problem...if you read the error.

  4. I'll say this with the possibility that it's already been said / assumed. The problem does not lay with realmlist.wtf (or authserver connection) because you know you can login. The problem rests between the worldserver and the authserver. (specifically your settings for realmlist in auth.realmlist)

    Make sure that:

    a) your port in worldserver.conf matches the port in your realmlist entry

    B) worldserver is actually running and up (run a command on console)

    c) everything that CDawg said above ^

  5. Your mySQL login isn't the issue. The issue is stated just above that.

    Unknown column 'unit_flags2' in 'field list'

    This suggests a missing SQL update. I highly suggest you use the merge tool found in the DB Alpha source to create your update SQL.

    http://www.trinitycore.org/f/topic/1518-trouble-with-your-trinity-install-readme-1st-faqs/#entry9360

    Make sure you are following the 4.3.4 guide thoroughly, specifically the part about populating the world db with TDB Full 4.3.4 and then continuing with the updates found at TrinityCore/TrinityCore_4.3.4_DB_Alpha

    • Upvote 1
  6. By newest version I ment the newest compile shown on your instructions site.

     

    The wiki (instructions site) refers to the git, which changes almost hourly. You should provide a revision (select * from version @ world) so that if there is a problem with the commit, it can be corrected in addition to resolving your issue. It's hard to solve a problem if we have no idea what you're starting with.

    • Upvote 1
  7. I get no errors compiling master branch, I do however with, 4.3.4. Can you at least attempt to explain what the error is and where you personally would look first to attempt to fix it, so that i can have a look. Or dont you know whats causing the error?

     

    The problem is repetition. There is tons of documentation on how to properly set up master. It's been thought out and every possible problem has already been asked on the forums. I can't count how many times Aokromes (and others) have said that 434 is not a branch intended for public consumption (yet). The assumption is that if you're attempting to build a working 434 branch, then you've mastered compiling TC with master, and running into something like an unknown column error (which immediately says "HEY YOU MISSED A SQL") should be no problem.

     

    The argument that "people with difficulty aren't getting attention" is a copout. Do what everyone else has already done and do some research. TrinityCore didn't spent thousands of manhours putting together documentation just for people to ignore it.

     

    There aren't enough people with enough time to keep repeating the same things over and over. When 434 has proper documentation and is considered more than just "in development" then you can expect positive feedback on troubleshooting actual issues. If your attempt at 434 ends at you running into the first problem you come to and giving up, then you shouldn't be attempting 434. Don't take it personally. If you do, you're seriously in the wrong place for sympathy.

    • Upvote 1
  8. yea noticed that it tried to update and like like whoa there dont be doing that .. so I got to go in order of these patches from 3.0.1 to 3.3.5a?  If so, crap thats

    ALOT of patching .. if you go out of order then your client is screwed?

     

    Yes, it's a pain in the ass, and yes, you're screwed. But it's virtually impossible to make that mistake. Just download all the patches you need, and then apply them one by one. A patch applied out of order will refuse to patch.

     

    My advice: once you've fully patched your client, make a copy of the folder (/World of Warcraft/). This way you will always have a good copy should you need to restore. I run mine from an external so it's always there.

  9. when i start the wow it says .. downloading updated tools ...

     

    Make sure you are specifically opening wow.exe from your /World of Warcraft/ directory. Do not launch using the desktop icon (delete that or change the exe it points to) and do not open "launcher.exe". Doing either of these will force your client to update from official, which will bring you straight to 4.x 5.x.

  10. im not sure if you all can answer this or not about the patches .. if i was to start patching my client from 3.01 onward, it says I need to do the

    2.4.3 patch first before I go to the 3.02 .. has anyone did this or should I just start with the 3.01 to 3.02?

     

     

    Open WoW.exe and note the text on the bottom left. (it should say Version X.X.X). This is your starting point. Patch up from there until you reach 3.3.5a or 12340. Feel free to use whatever patch source you want, I just provided the one that looked the most trustworthy on first google attempt.

×
×
  • Create New...