nothing jumps out at me.
You say you had it work and now it is not -- correct?
Then maybe its a good idea to drop your database, create it, source db.sql and see what you get.
If everything is fine, then go ahead and add in the item db and whatever else you add.
This reminds me:
there is a sqldump command that can be used
mysqlhotcopy is for doing backups for for quick dumps and restores do:
mysqldump --opt database > yourbackup.sql
then to restore
mysql database <yourbackup.sql
or if you like the "source" command:
mysql -e "source /locationofyourdump/yourbackup.sql" database
|