Habe mir vorhin den Slash News Mod eingabaut.
Ich bin die Install schritt für schritt durchgegangen. Soweit klappt alles, wenn ich mich nun aber in´s forum einlogge, dann bekomme ich ne fehlermeldung.
Code: Alles auswählen
Failed obtaining forum access control lists
DEBUG MODE
SQL Error : 1054 Unknown column 'a.auth_news' in 'field list'
SELECT a.forum_id, a.auth_view, a.auth_read, a.auth_news, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate, a.auth_attachments, a.auth_download, a.auth_mod FROM phpbb_auth_access a, phpbb_user_group ug WHERE ug.user_id = 2 AND ug.user_pending = 0 AND a.group_id = ug.group_id AND a.forum_id = 18
Line : 158
File : auth.php
Code: Alles auswählen
#-----[ OPEN ]------------------------------------------
#
includes/auth.php
#
#-----[ FIND ]------------------------------------------
#
$a_sql = 'a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate';
#
#-----[ IN-LINE FIND ]------------------------------------------
#
$a_sql = 'a.auth_view, a.auth_read,
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
a.auth_news,
#
#-----[ FIND ]------------------------------------------
#
$auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
$auth_fields = array('auth_view', 'auth_read',
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
'auth_news',
Danke schonmal für eure Hilfe.