![]() |
|
[Archive] Common Errors & Solutions - Printable Version +- Forums (https://elijahketchersid.com/forums) +-- Forum: WoW Modding (https://elijahketchersid.com/forums/forum-4.html) +--- Forum: Tutorials (https://elijahketchersid.com/forums/forum-16.html) +---- Forum: Miscellaneous (https://elijahketchersid.com/forums/forum-22.html) +---- Thread: [Archive] Common Errors & Solutions (/thread-11.html) |
[Archive] Common Errors & Solutions - rektbyfaith - 10-24-2025 Original Post: https://www.wowmodding.net/topic/1480-common-errors-solutions/ Hey, In this post, which will slowly be expanded, I’ll be detailing a number of common errors encountered when working with WoW private servers and the tools used to work on them. This guide is targeted primarily for TrinityCore and Linux, but you can most-likely use a number of these solutions on other cores. Before I go any further, if you’re not following the official TrinityCore guide to compile your server, then erase everything you’ve done so-far and follow it instead of whatever guide you’ve been using before. There are a few things you should triple-check when trying to find a solution to your problem. They are as follows.
TrinityCore – Authserver & Worldserver Error Solution Unknown column ‘columnName’ in ‘field list’.td> This generally means that your database needs to be updated. The ‘columnName’ could be any column, this is just an example. No database selected This generally means that you haven’t set-up your database. ERROR: Could not connect to MySQL database at ipAddress: Can’t connect to MySQL server on ‘ipAddress’ This generally means that MySQL isn’t running or that you have incorrectly configured your config files. Could not connect to MySQL database at ipAddress: Access denied for user ‘username’@’ipAddress’ (using password: YES) This generally means that you either haven’t set the correct username/password to log into MySQL with in your authserver.conf or worldserver.conf file or that the specified MySQL user doesn’t exist. DatabasePool auth NOT opened. There were errors opening the MySQL connections. Check your SQLDriverLogFile for specific errors. See the solution above. This can also mean that the IP and/or port specified in the authserver.conf or worldserver.conf file is incorrect. TrinityCore – Authserver Error Solution The application was unable to start correctly (0x000007b). Ensure that you have the latest version of the .NET Framework from the Microsoft website. Error in config file: cannot open file Ensure that your authserver.conf file isn’t named authserver.conf.dist; if it is, then rename the file to authserver.conf. Invalid or missing configuration file : /path/to/authserver.conf See the solution above. If the previous solution didn’t work, then try recompiling the core and checking to ensure that you set the proper paths when running cmake. TrinityCore – Worldserver Error Solution Error in config file: cannot open file Ensure that your worldserver.conf file isn’t named worldserver.conf.dist; if it is, then rename the file to worldserver.conf. Invalid or missing configuration file : /path/to/worldserver.conf See the solution above. If the previous solution didn’t work, then try recompiling the core and checking to ensure that you set the proper paths when running cmake. Loaded 0 trinity strings. DB table ‘trinity_string’ is empty. This means that you’ve most-likely erased the trinity_string table in the world database. You’ll need to download the latest version of TDB and re-upload the trinity_strings table. |