Having a funky database can cause 1017 errors. Fortunately, these errors are usually spit out in the console of world.exe and you can analyze them.
Since your database is brand new with no essential user data in it, don't be shy about scrapping it and starting from scratch. drop database eq; is the SQL command to get rid of the database, and you can start over from there. I recall having to start over several times until I found a database script that worked.
However, you should be able to run just fine with db.sql by itself. This is just database structure with no world data. You'll have a lifeless world, but it should prove that the external mechanics of your setup are in order.
|