Shop mod
Geplaatst: 08 nov 2004, 16:54
Na het installeren van de shop mod krijg ik deze error:
Fatal error: Call to a member function on a non-object in /home/gameju43/public_html/forum/includes/auth.php on line 57
Hoe los ik dit op? 
Fatal error: Call to a member function on a non-object in /home/gameju43/public_html/forum/includes/auth.php on line 57
Code: Selecteer alles
{
//start item auths
$itemarray = explode('ß', str_replace("Þ", "", $userdata['user_items']));
$sql = "select name, accessforum from phpbb_shopitems where accessforum != '0'";
//de volgende regel is regel 57:
if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_MESSAGE, "Database Connection Error!<br>".mysql_error()); }
$num_rows = mysql_num_rows($result);
$itemformaccess = array();
for ($x = 0; $x < $num_rows; $x++)
{
$row = mysql_fetch_array($result);
if (in_array($row['name'], $itemarray))
{
$itemformaccess[] = $row['accessforum'];
}
}
