| backa | 
					 | 
			
|---|---|
| 
					 installation problem: 
						
					2. /system/functions.php Find $cfg['sqldb'] = 'mysql'; BELOW, ADD: function getcashbanked($userid)
   {
   $sql2 = sed_sql_query("SELECT COUNT(*) FROM sed_shop_bank WHERE userid='$userid'");
   $amtbnk = sed_sql_result($sql2, 0, "COUNT(*)");
   if($amtbnk > 0)
      {
      $sql3 = mysql_query("SELECT * FROM sed_shop_bank WHERE userid='$userid' LIMIT 1");
      $row3 = mysql_fetch_array($sql3);
      return $row3['amount'];
      }else{
      return 0;
      }
   }
the problem is, that the system/functions.php doesnt have $cfg['sqldb'] = 'mysql'; what should i do well that mod didnt install for me, it didnt have the sql file with it... i dled the mod form WDDB the forum shop havent got SQL file included, can someone help me ? 
                        This post was edited by backa (2009-07-10 14:30, 16 years ago)
                     
                    
				 |