Installation or check your current system"); } require("system/00_settings/start.php"); if ($site_encoding != "noencoding") { header('content-type: text/html; charset='.$site_encoding); } require("system/01_user/start.php"); //Ă„NDERUNGEN -- START $mCurrReq=@$_GET['id']; if (!isAdmin() && $mCurrReq != ""){ $mlink = connectDB(); $mquery = 'SELECT `page_extern` FROM `' . $db_praefix . 'page` WHERE `page_path` ="' . $mCurrReq .'"'; $mresult = mysql_query($mquery); $mrows=mysql_fetch_array($mresult); $mExtPath=$mrows['page_extern']; if(strlen($mExtPath) > 0) { if(substr($mExtPath, 0, 7) == "http://"){ $mRedirectHeader="Location: ". $mExtPath; header($mRedirectHeader); } else { $mRedirectHeader="Location: http://".$_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']). $mExtPath; header($mRedirectHeader); } } } //Ă„NDERUNGEN -- ENDE require("system/02_page/start.php"); if (isAdmin()) { require("system/03_admin/start.php"); } require("system/00_settings/end.php"); ?>