Habe nach der Installation des SimpleSubForums (auch der eXtreme Style ist installiert) folgende Fehlermeldung wenn ich einen neuen Foren-Bereich erstellen will:
Couldn't get order number from forums table
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 '' at line 3
SELECT MAX(forum_order) AS max_order FROM phpbb_forums WHERE cat_id = ,
Line : 445
File : admin_forums.php
Zeile 445 in der Datei ist folgende:
Code: Alles auswählen
message_die(GENERAL_ERROR, "Couldn't get order number from forums table", "", __LINE__, __FILE__, $sql);
Code: Alles auswählen
#-----[ FIND ]------------------------------------------
#
$sql = "DELETE FROM " . FORUMS_TABLE . "
WHERE forum_id = $from_id";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, "Couldn't delete forum", "", __LINE__, __FILE__, $sql);
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Begin Simple Subforums MOD
// Move subforums to category
$sql = "UPDATE " . FORUMS_TABLE . " SET forum_parent = '0' WHERE forum_parent = '$from_id'";
$db->sql_query($sql);
// End Simple Subforums MOD
#
(Vielleicht ist es ja genauso simpel zu erklären wie mein letztes Problem...

Dynamische Grüße
Steffen Mc Dermid