Turn on debugging to better understand the error
open
Open sql_layer.php go to around line 300 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;;
mikem