Aus welchem Grund erscheint beim Aufruf der install.php
<?php
// $Id: index.php 1069 2009-07-15 20:28:15Z Ruebenwurzel $
/*
WebsiteBaker Project <http://www.websitebaker.org/>
Copyright (C) 2004-2009, Ryan Djurovich
WebsiteBaker is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
WebsiteBaker is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with websitebaker; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Start a session
if(!defined('SESSION_STARTED')) {
session_name('wb_session_id');
session_start();
define('SESSION_STARTED', true);
}
// Function to highlight input fields which contain wrong/missing data
function field_error($field_name='') {
if(!defined('SESSION_STARTED') || $field_name == '') return;
if(isset($_SESSION['ERROR_FIELD']) && $_SESSION['ERROR_FIELD'] == $field_name) {
return ' class="wrong"';
}
}
// Check if the page has been reloaded
if(!isset($_GET['sessions_checked']) OR $_GET['sessions_checked'] != 'true') {
// Set session variable
$_SESSION['session_support'] = '<font class="good">Enabled</font>';
// Reload page
header('Location: index.php?sessions_checked=true');
exit(0);
} else {
// Check if session variable has been saved after reload
if(isset($_SESSION['session_support'])) {
$session_support = $_SESSION['session_support'];
} else {
$session_support = '<font class="bad">Disabled</font>';
}
}
usw.?