http://www.phpbbhacks.com/download/8123
Ich bekomme folgenden SQL Fehler wenn ich auf die index.php gehe:
SQL ERROR [ mysql4 ]
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 'FROM phpbb_groups g LEFT JOIN phpbb_user_group ug ON g.group_id = ug.grou' at line 3 [1064]
und folgenden Fehler wenn ich auf die portal.php gehe:
SQL ERROR [ mysql4 ]
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 'FROM phpbb_groups g LEFT JOIN phpbb_user_group ug ON ( ' at line 2 [1064]
Was mich schonmal wundert ist der sql4 Fehler da auf meinem Server die Version MySQL-Client-Version: 5.0.36 läuft
Folgendes musste ich in der index.php für den Mod ändern:
Find
Tip: This may be a partial find and not the whole line.
Code: Alles auswählen
Code: Select All
$sql = 'SELECT group_id, group_name, group_colour, group_type
FROM ' . GROUPS_TABLE . '
WHERE group_legend = 1
ORDER BY group_name ASC';
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Alles auswählen
Code: Select All
$sql = 'SELECT group_id, group_name, group_colour, group_type
FROM ' . GROUPS_TABLE . '
WHERE group_legend = 1
ORDER BY group_order ASC';
Find
Tip: This may be a partial find and not the whole line.
Code: Alles auswählen
Code: Select All
WHERE g.group_legend = 1
AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
ORDER BY g.group_name ASC';
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Alles auswählen
Code: Select All
WHERE g.group_legend = 1
AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
ORDER BY g.group_order ASC';
Habe mal die index.php hochgeladen damit ihr sie euch anschauen könnt
http://rapidshare.com/files/156324057/index.php.html
Ich hoffe es kann jemand helfen.