2
Did you adopt mainfile.php to the new path and (if changed) MySQL hostname, user and password?
Are MySQL extensions active?
You could test MySQL accessibility with the following php snippet:
$link = mysql_connect('mysql', 'mysql_user', 'mysql_password');
if (!$link) {
die('No connection possible: ' . mysql_error());
}
printf("MySQL server version: %sn", mysql_get_server_info());
?>
Should give you the version of your sql database if its setup correctly and after you edited your informations in there.
Sorry, this signature is experiencing technical difficulties. We will return you to the sheduled signature as soon as possible ...