Seite 1 von 1
error nummero 2^^
Verfasst: 23.02.2005 18:13
von Silverhawk
und hier der nächste error:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /usr/export/www/vhosts/funnetwork/hosting/silverhawk/admin/admin_forums.php on line 336
hat mit der attached forums zu tun....
hier als textdatei:
http://silverhawk.si.funpic.de/admin_forums.txt
Verfasst: 23.02.2005 18:25
von FatFreddy
in Zeile 336
ersetze:
durch:
FatFreddy
Verfasst: 23.02.2005 18:32
von Silverhawk
jetzt hab ich den:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /usr/export/www/vhosts/funnetwork/hosting/silverhawk/admin/admin_forums.php on line 401
Verfasst: 23.02.2005 19:06
von FatFreddy
suche:
Code: Alles auswählen
VALUES ('" . $next_id . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumname']) . "', " . intval($HTTP_POST_VARS[POST_CAT_URL]) . ", '" . " . intval($HTTP_POST_VARS['attached_forum_id']) . ", str_replace("\'", "''", $HTTP_POST_VARS['forumdesc']) . "', $next_order, " . intval($HTTP_POST_VARS['forumstatus']) . ", " . intval($HTTP_POST_VARS['prune_enable']) . $value_sql . ")";
ersetze durch:
Code: Alles auswählen
VALUES ('" . $next_id . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumname']) . "', " . intval($HTTP_POST_VARS[POST_CAT_URL]) . ", " . intval($HTTP_POST_VARS['attached_forum_id']) . ", '" . str_replace("\'", "''", $HTTP_POST_VARS['forumdesc']) . "', $next_order, " . intval($HTTP_POST_VARS['forumstatus']) . ", " . intval($HTTP_POST_VARS['prune_enable']) . $value_sql . ")";
FatFreddy