Can you do this for me. So we can see what is causing that error?
Open includes/sql_layer.php go to line 300 or so and change:
|
Code:
|
case "MySQL":
$row = mysql_fetch_row($res);
return $row;
break;; |
to this
|
Code:
|
case "MySQL":
if ($row = mysql_fetch_row($res)) {
return $row;
} else {
print (mysql_error());
}
break;; |
then upload the changed file. Backup your original first. That should give you the debug on what the SQL is stopping on.
mikem