Seite 1 von 1
Userbefugnisse
Verfasst: 21.02.2004 17:46
von tobi-webnet
Hallo
wenn ich die Userbefugnisse ändern will kommt dieser Fehler:
SQL Error : 1064 You have an error in your SQL syntax near 'group_id = 4' at line 3
UPDATE phpbb_auth_access SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0 , auth_globalannounce = 0WHERE group_id = 4
Line : 247
File : /raid/domains/de/t/tobi-webnet/htdocs/www/phpBB2/admin/admin_ug_auth.php
Wer kann mir helfen??
tobi-webnet
Verfasst: 21.02.2004 20:17
von Dennis63
Verknüpfe mal die admin_ug_auth.php als TXT Datei, dann kan man mal reinschauen.
Grüße
Dennis
Verfasst: 21.02.2004 20:35
von Acid
Vor dem WHERE (bei der sql-Anweisung ca. in Zeile 240) fehlt noch ´n Leerzeichen.

Verfasst: 22.02.2004 12:35
von tobi-webnet
hier ist mal der link
http://www.tobi-webnet.de/admin_ug_auth.txt
acid, ich sau mal nach
tobi-webnet
Verfasst: 22.02.2004 15:07
von Mister_X
admin_ug_auth.php
1) suche nach
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0
, auth_globalannounce = 0WHERE group_id = $group_id";
und ersetzte dies mit
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0, auth_globalannounce = 0
WHERE group_id = $group_id";
2) suche nach
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0
, auth_globalannounce = 0WHERE group_id = $group_id";
und ersetze dies mit
Code: Alles auswählen
$sql = "UPDATE " . AUTH_ACCESS_TABLE . "
SET auth_view = 0, auth_read = 0, auth_post = 0, auth_reply = 0, auth_edit = 0, auth_delete = 0, auth_sticky = 0, auth_announce = 0, auth_globalannounce = 0
WHERE group_id = $group_id";
Ich habe mir jetzt den anderen Code nicht weiter angeschaut, aber damit dürfte die von dir erwähnte Fehlermeldung jedenfalls verschwinden.
Verfasst: 22.02.2004 20:20
von tobi-webnet
hat geklappt