I'm following your Wiki instructions for moving my existing Zencart from one server to another. I have uploaded & installed 1.3.7 to my new server & now when I go to the store to test it before I go to step 3, I get this error:

1146 Table 'bsdzencart.db_cache' doesn't exist
in:
[db_cache table]

After reading some other threads, I tried this fix of pasting this query into MySql on the phpMyAdmin:

DROP TABLE IF EXISTS db_cache;
CREATE TABLE db_cache (
cache_entry_name varchar(64) NOT NULL,
cache_data blob,
cache_entry_created int(15),
PRIMARY KEY (cache_entry_name)
) TYPE=MyISAM;

Now I'm getting this error:
1146 Table 'bsdzencart.configuration' doesn't exist
in:
[db_cache table]

I did a full install of 1.3.7 - NOT an upgrade. It all installed fine, but when I click on the Zen Cart Setup Finished - "Click here to go to store" button, I get the error.

I'm panicking here. Can someone please help me solve this?