Ok let's try this debug
change lines 252-255 in sql_layer.php from:
Code:
case "MySQL":
$rows=mysql_num_rows($res);
return $rows;
break;;
to:
Code:
case "MySQL":
if ($rows=mysql_num_rows($res)) {
return $rows;
} else {
print (mysql_error());
}
break;;
see what that shows for that error...
mikem