View Single Post
  #9 (permalink)  
Old 02-04-2003, 02:56 PM
mikem mikem is offline
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
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
Reply With Quote