nach dem posten gleich wieder ins Forum !?
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Mit welcher Geschwindigkeit gehst du in's Internet? Wenn die Seite nach drei Sekunden noch nicht vollständig geladen ist, könnte es evtl. daran liegen.
Gruß, Philipp
Gruß, Philipp
Kein Support per PN!
Der Sozialstaat ist [...] eine zivilisatorische Errungenschaft, auf die wir stolz sein können. Aber der Sozialstaat heutiger Prägung hat sich übernommen. Das ist bitter, aber wahr. (Horst Köhler)
Meine Mods
Der Sozialstaat ist [...] eine zivilisatorische Errungenschaft, auf die wir stolz sein können. Aber der Sozialstaat heutiger Prägung hat sich übernommen. Das ist bitter, aber wahr. (Horst Köhler)
Meine Mods
Ups...Acid hat geschrieben:Ich sagte gar nix.. der Philipp war´s.
Die Weiterleitung in der posting.php gilt für Umfragen... die Weiterleitungen in der functions_post.php für den Rest (Editieren, Antworten, Thema schreiben).
(Wollte ja nur testen, ob du aufmerksam mitliest
Gruß (und Sorry),
Philipp
Kein Support per PN!
Der Sozialstaat ist [...] eine zivilisatorische Errungenschaft, auf die wir stolz sein können. Aber der Sozialstaat heutiger Prägung hat sich übernommen. Das ist bitter, aber wahr. (Horst Köhler)
Meine Mods
Der Sozialstaat ist [...] eine zivilisatorische Errungenschaft, auf die wir stolz sein können. Aber der Sozialstaat heutiger Prägung hat sich übernommen. Das ist bitter, aber wahr. (Horst Köhler)
Meine Mods
Da gibts 'n Mod für:
phpBBHacks.com - Hacks - Version 2 - Miscellaneous Hacks and Downloads - Redirection Suite
phpBBHacks.com - Hacks - Version 2 - Miscellaneous Hacks and Downloads - Redirection Suite
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------
#
$template->assign_vars(array(
'META' => $return_meta)
);
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//
// MOD: Redirect to Post (normal post)
//
if ( $mode == 'delete' && $post_data['first_post'] && $post_data['last_post'] )
{
// URL for redirection after deleting an entire topic
$redirect = "viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id";
// If the above URL points to a location outside the phpBB directories
// move the slashes on the next line to the start of the following line:
//redirect(append_sid($redirect, true), true);
redirect(append_sid($redirect, true));
}
elseif ( $mode == 'delete' )
{
// URL for redirection after deleting a post
$redirect = "viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id";
// If the above URL points to a location outside the phpBB directories
// move the slashes on the next line to the start of the following line:
//redirect(append_sid($redirect, true), true);
redirect(append_sid($redirect, true));
}
elseif ( $mode == 'reply' || $mode == 'editpost' || $mode == 'newtopic' )
{
// URL for redirection after posting or editing a post
$redirect = "viewtopic.$phpEx?" . POST_POST_URL . "=$post_id";
$post_append = "#$post_id";
// If the above URL points to a location outside the phpBB directories
// move the slashes on the next line to the start of the following line:
//redirect(append_sid($redirect, true) . $post_append, true);
redirect(append_sid($redirect, true) . $post_append);
}
//
// MOD: -END-
//
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# End
Zuletzt geändert von BZebra am 28.09.2003 15:29, insgesamt 1-mal geändert.
Hab aber jetzt gleich ein Problem mit dem Mod.
Bei mir gibts nen
Fatal error: Call to undefined function: redirect() in .../forum/posting.php on line 615
welche bei mir wäre
ganz unten, die letzte Zeile.
Kann mir da jemand helfen?
Gruß,
BZebra
Bei mir gibts nen
Fatal error: Call to undefined function: redirect() in .../forum/posting.php on line 615
welche bei mir wäre
Code: Alles auswählen
redirect(append_sid($redirect, true) . $post_append);Kann mir da jemand helfen?
Gruß,
BZebra
