There is something amiss with your DB settings.
In a previous post you stated
"define('DB_PREFIX', '_zen'); (this was zen_ and so I thought that might be the problem)"
I can't tell you with absolute certainty what your DB_PREFIX should be, but I can tell you that it *shouldn't* be "_zen"
Furthermore, this current error log is suggesting that you now have the DB_PREFIX set to "nickhyde_zen1._zendb", which is probably also incorrect.
What I'd suggest is that you log into your cPanel (not Zencart) and click on the 'MySQL databases' icon. This will show you the names of your database(s), they'll look something like
zendb_zencart
zen1_zencart
zen_zencart or perhaps even
zencart (no prefix).
Once you've determined this,d you'll need to set the DB_PREFIX setting (in both configure.php fileds) to
define('DB_PREFIX', 'zendb_')
define('DB_PREFIX', 'zen1_')
define('DB_PREFIX', 'zen_') or
define('DB_PREFIX', '')
Cheers
RodG
ps. make sure the configure files are writable before making the changes.
Bookmarks