wenn man meine seite /wbb2/acp/setup.php aufrufe kommt das ganze
<?php
// ************************************************************************************//
// * WoltLab Burning Board 2
// ************************************************************************************//
// * Copyright (c) 2001-2004 WoltLab GmbH
// * Web
http://www.woltlab.de/
// * License
http://www.woltlab.de/products/burni...license_en.php
// *
http://www.woltlab.de/products/burni...rd/license.php
// ************************************************************************************//
// * WoltLab Burning Board 2 is NOT free software.
// * You may not redistribute this package or any of it's files.
// ************************************************************************************//
// * $Date: 2006-10-16 11:59:10 +0200 (Mo, 16 Okt 2006) $
// * $Author: Burntime $
// * $Rev: 1720 $
// ************************************************************************************//
if (file_exists("./lib/install.lock")) die("please delete /acp/lib/install.lock to unlock installation");
@error_reporting(7);
@set_time_limit(0);
@set_magic_quotes_runtime(0);
$phpversion = phpversion();
$noerror = 0;
define('USE_MBSTRING', false);
/** get function libary **/
require("./lib/functions.php");
require("./lib/admin_functions.php");
if (version_compare($phpversion, "4.1.0") == -1) {
$_REQUEST = array_merge($HTTP_COOKIE_VARS, $HTTP_POST_VARS, $HTTP_GET_VARS);
$_COOKIE =& $HTTP_COOKIE_VARS;
$_SERVER =& $HTTP_SERVER_VARS;
$_FILES =& $HTTP_POST_FILES;
$_GET =& $HTTP_GET_VARS;
$_POST =& $HTTP_POST_VARS;
}
// remove slashes in get post cookie data...
if (get_magic_quotes_gpc()) {
if (is_array($_REQUEST)) $_REQUEST = stripslashes_array($_REQUEST);
if (is_array($_POST)) $_POST = stripslashes_array($_POST);
if (is_array($_GET)) $_GET = stripslashes_array($_GET);
if (is_array($_COOKIE)) $_COOKIE = stripslashes_array($_COOKIE);
}
/* page output function */
function informationPage($content, $title = '') {
echo '<?xml version="1.0" encoding="windows-1252"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de" xml:lang="de">
<head>
<title>' . $title . '</title>
<link rel="stylesheet" href="css/other.css" />
</head>
<body>
<table align="center" width="500">
<tr>
<td align="center"><img src="images/acp-logo.gif" border="0" alt="" /></td>
</tr>
<tr>
<td><br /><br />' . $content . '</td>
</tr>
</table>
</body>
</html>';
}
/** refresh an acp page **/
function stepdie()
{
global $noerror;
if ($noerror == 0) {
echo "</textarea>
</form></body></html>";
}
}
/** refresh an acp page **/
function stepstart() {
register_shutdown_function("stepdie");
naja und dann noch end viel text....
Aber warum ???