kemi,
First off, I would try making sure that your database connection information is correct.
Try building a test script (test.php or similar) in your web documents root that looks something like this:
PHP Code:
<?php
$db = @mysql_connect("localhost","YOURUSERNAME","YOURPASSWORD");
mysql_select_db("DATABASENAME", $db);
if($db) {echo "connected";}
else {echo "no connection";}
?>
Use the same info as you are using in your site.ini for eZPublish. Upload the test script, CHMOD to 777, and run it. This will at least confirm whether your connection information (path, db name, username, password) are correct. If not, you may need to contact your host for assistance.
Hope this helps - please let us know how this works out.
Bob
Bookmarks