The error message is indicating that the eq.items table cannot be found. To check if your items table is really still there:
start/run/cmd
mysql -u root
use eq;
select * from items;
[You should get a load of output listing all the items in the db]
If your table is still there, did you edit your db.ini file ? Do you have
database=eq
in your db.ini ?
|