uue fehler! (unqualified user error!)
tauschen, nicht ersetzen, hast du geschrieben! sorry.
moment!
Forum-Befugnisse
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Zuletzt geändert von JB007 am 03.08.2004 00:28, insgesamt 1-mal geändert.
Code: Alles auswählen
Could not query forums information
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE f.forum_id NOT IN (12,13,28) LEFT JOIN phpbb_posts p ON
SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id FROM ((( phpbb_forums f LEFT JOIN phpbb_users u ON u.user_id = p.poster_id ) WHERE f.forum_id NOT IN (12,13,28) LEFT JOIN phpbb_posts p ON p.post_id = f.forum_last_post_id ) LEFT JOIN phpbb_topics t ON t.topic_last_post_id = p.post_id ) ORDER BY f.cat_id, f.forum_order
Line : 166
File : /mnt/be1/08/467/00000011/htdocs/community/index_020804.phpCode lautet jetzt:
Code: Alles auswählen
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id " .
" FROM ((( " . FORUMS_TABLE . " f " .
" LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id ) WHERE f.forum_id NOT IN (12,13,28) " .
" LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )" .
" LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_last_post_id = p.post_id ) " .
" ORDER BY f.cat_id, f.forum_order";
break;
}Code: Alles auswählen
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id " .
" FROM ((( " . FORUMS_TABLE . " f " .
" LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id ) WHERE f.forum_id NOT IN (12,13,28) " .
" LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )" .
" LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_last_post_id = p.post_id ) " .
" ORDER BY f.cat_id, f.forum_order";
Code: Alles auswählen
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id
FROM ((( " . FORUMS_TABLE . " f
LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
LEFT JOIN " . TOPICS_TABLE . " t ON t.topic_last_post_id = p.post_id ) WHERE f.forum_id NOT IN (12,13,28)
ORDER BY f.cat_id, f.forum_order";Nachdem das 1.Problem gelöst ist, würde ich mich freuen, wenn mir auch noch jemand helfen könnte, das 2.Problem zu lösen.
1.Problem: Foren unsichtbar machen, ohne die Befugnisse über den Admin-Panel ändern zu müssen. >> Problem gelöst.
2.Problem: Unsichtbar Foren aus 1. für Moderatoren wieder sichtbar machen. >> Hilfe!!!!!
1.Problem: Foren unsichtbar machen, ohne die Befugnisse über den Admin-Panel ändern zu müssen. >> Problem gelöst.
2.Problem: Unsichtbar Foren aus 1. für Moderatoren wieder sichtbar machen. >> Hilfe!!!!!