ich habe ein Problem mit folgendem:
Code: Select all
header("Location: index.php");Zum Einsatz kommt PHP 4.2.2.
Hat jemand eine Hilfestellung?
Code: Select all
header("Location: index.php");Code: Select all
header("Location: http://www.example.com/index.php");Code: Select all
$UserSess = new Sess();
$UserAuth = new Auth();Code: Select all
$this->AuthID = $_COOKIE['AuthID'];Code: Select all
if (!$UserAuth->login()) {
$UserAuth->go_loginscreen();
}Sorry, aber die dritte Anmerkung im Manual hast Du wohl überlesen.Moppi wrote:Danke für die Tipps aber das habe ich alles schon durch daran liegt es nicht.
Ohne den vollständigen Source lässt sich dazu nichts schreiben.Moppi wrote:Aber mal was anderes ich denke es liegt daran:
Code: Select all
<?php
setcookie ("TestCookie", "blabla");
header('Location: http://'.$_SERVER["HTTP_HOST"].'/index.php');
?>