Fehlermeldung Categories Hierachy
Verfasst: 10.11.2003 16:48
hoi hoi
habe soeben den Categories Hierachy-Mod eingebaut...naja mehr oder weniger!
wenn ich eine Kategorie erstellen will kommt folgendes:
alles um Linie 954:
das erstellen von Foren funktioniert problemlos...
vielen Dank schonmal im Vorraus für Hilfe!
habe soeben den Categories Hierachy-Mod eingebaut...naja mehr oder weniger!
wenn ich eine Kategorie erstellen will kommt folgendes:
Code: Alles auswählen
Couldn't insert row in categories 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 2
INSERT INTO phpbb_categories (cat_title, cat_main_type, cat_main, cat_desc, cat_order) VALUES ('ddd', 'c', 0, 'ddddd', )
Line : 954
File : /homepages/46/d74468068/htdocs/plauderclub/admin/admin_forums.php
Code: Alles auswählen
//-- mod : categories hierarchy --------------------------------------------------------------------
//-- delete
// $sql = "INSERT INTO " . CATEGORIES_TABLE . " (cat_title, cat_order)
// VALUES ('" . str_replace("\'", "''", $HTTP_POST_VARS['categoryname']) . "', $next_order)";
//-- add
$sql = "INSERT INTO " . CATEGORIES_TABLE . " (cat_title, cat_main_type, cat_main, cat_desc, cat_order)
VALUES ('" . str_replace("\'", "''", $HTTP_POST_VARS['cat_title']) . "', '" . $cat_main_type . "', " . $cat_main . ", '" . str_replace("\'", "''", $HTTP_POST_VARS['cat_desc']) . "', $next_order)";
//-- fin mod : categories hierarchy ----------------------------------------------------------------
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, "Couldn't insert row in categories table", "", __LINE__, __FILE__, $sql);
}
vielen Dank schonmal im Vorraus für Hilfe!