
11-27-2005, 12:04 PM
|
|
|
Join Date: Oct 2004
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by John
Oh, got it.
Find:
Code:
$challenges = $db->query_read("SELECT arcade_challenges.*, touser.username AS tousername, fromuser.username AS fromusername, arcade_games.miniimage, arcade_games.title FROM " . TABLE_PREFIX . "arcade_challenges
Replace with
Code:
$challenges = $db->query_read("SELECT arcade_challenges.*, touser.username AS tousername, fromuser.username AS fromusername, arcade_games.miniimage, arcade_games.title FROM " . TABLE_PREFIX . "arcade_challenges AS arcade_challenges
|
Still getting the
Code:
Invalid SQL:
SELECT arcade_challenges.*, touser.username AS tousername, fromuser.username AS fromusername, arcade_games.title FROM vb35_arcade_challenges
LEFT JOIN vb35_user AS touser ON (touser.userid=arcade_challenges.touserid)
LEFT JOIN vb35_user AS fromuser ON (fromuser.userid=arcade_challenges.fromuserid)
LEFT JOIN vb35_arcade_games AS arcade_games ON (arcade_games.gameid=arcade_challenges.gameid)
WHERE (status=0 AND touserid=1) OR (status=1 AND touserid=1 AND tosessionid=0) OR (status=1 AND fromuserid=1 AND fromsessionid=0);
MySQL Error : Unknown table 'arcade_challenges'
Error Number : 1051
Quote:
Originally Posted by tidy_boy
Where do i look for this?
|
arcade.php
|