Make sure you check all the path settings in any pertinent files, Admin preferences etc.
To set Debug mode to get an even better Idea of what is going on, do this:
sql_layer.php Debug
Open sql_layer.php go to line 300 and change:
|
Code:
|
case "MySQL":
$row = mysql_fetch_row($res);
return $row;
break;; |
To the following:
|
Code:
|
case "MySQL":
if ($row = mysql_fetch_row($res)) {
return $row;
} else {
print (mysql_error());
}
break;; |
This will just give a description of the error instead of showing ALL the sql queries and error.
mikem