Seite 2 von 2

Verfasst: 23.07.2003 14:23
von Acid
Es gibt in der functions_post.php mehrere solcher "Weiterleitungen" ...sicher, das du die richtige erwischt hast (bzw. eigentlich müssten alle angepasst werden) !?

Verfasst: 23.07.2003 14:27
von Reality
Was denn nun? posting.php oder functions_post.php?
Davor sagtest du posting.php.

Gruss Reality

Verfasst: 23.07.2003 14:29
von Acid
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).

Verfasst: 23.07.2003 23:18
von PhilippK
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

Verfasst: 23.07.2003 23:23
von Reality
DSL :)
Ich werd mal in der functions_post.php rumspielen.

Gruss Reality

Verfasst: 23.07.2003 23:28
von Reality
So hab´s nun auf 0 gestellt, wobei es dann doch ca. 1 Sekunde dauert :(

Gruss Reality

Verfasst: 23.07.2003 23:29
von PhilippK
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).
Ups...
(Wollte ja nur testen, ob du aufmerksam mitliest :roll: )

Gruß (und Sorry),

Philipp

Verfasst: 24.07.2003 12:46
von Acid
@Reality
Die Geschwindigkeit eines Boardes wird natürlich auch vom Server beeinflusst.. wenn der nicht superschnell ist, dann dauert´s halt eine Ewigkeit von einer Sekunde. :wink:

Verfasst: 28.09.2003 14:47
von BZebra
Da gibts 'n Mod für:
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

Verfasst: 28.09.2003 15:28
von BZebra
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

Code: Alles auswählen

redirect(append_sid($redirect, true) . $post_append);
ganz unten, die letzte Zeile.

Kann mir da jemand helfen?

Gruß,
BZebra