3v4l.org

run code in 300+ PHP versions simultaneously
<?php // SpaceBoard - the board with support for spaces // Copyright (C) 2012 GlitchMr // We have to expect PHP 4.0.0 without extensions until end of the tests. // Hack protection if (file_exists('../storage/sql.php')) { die('Please delete <kbd>storage/sql.php</kbd> to continue.'); } session_start(); if (!empty($_GET['ignore_errors'])) { $_SESSION['space_ignore_errors'] = true; } $errors = array(); // If version_compare doesn't exist then you're seriously screwed. if (!function_exists('version_compare') || version_compare(PHP_VERSION, '5.2.4', '<') ) { $errors[] = 'You\'re using PHP ' . htmlspecialchars(PHP_VERSION) . ' but you need at least PHP 5.2.4'; } if (!class_exists('mysqli')) { $errors[] = '<code>mysqli</code> not found, but it\'s required.'; } if (!function_exists('mb_strlen')) { $errors[] = 'Multibyte String for PHP is not installed. It\'s required.'; } if (!function_exists('preg_match')) { $errors[] = 'Your PHP installation doesn\'t have PCRE. It\'s required ' . 'for SpaceBoard to work.'; } if (ini_get('register_globals')) { $errors[] = 'Your server has <a href="http://www.php.net/manual/en/' . 'security.globals.php">register_globals</a> enabled. It\'s' . ' unsupported and attempting to continue may result your ' . 'board being hacked.'; } if (!file_exists('../storage/plugins')) { // Make basic file storage for tests @mkdir('../storage'); @mkdir('../storage/3rdparty'); @mkdir('../storage/3rdparty/twig'); @mkdir('../storage/plugins'); } // If it doesn't exist after creation something went wrong. if (!file_exists('../storage/plugins')) { $errors[] = 'Your filesystem isn\'t writable. Make <kbd>storage</kbd> ' . 'directory in main directory of your board and give it ' . 'read and write rights.'; } if ($errors && empty($_SESSION['space_ignore_errors'])) { echo '<!DOCTYPE html><title>Runtime error!</title>', '<div style="border-top: 5px solid red;', 'border-bottom: 5px solid red;', 'background: #FEE;', 'padding: 5px">', '<p>Sorry, but your server cannot run SpaceBoard.<ul>'; foreach ($errors as $error) { echo "<li>$error"; } echo '</ul><p>Or, if you really want to continue you may ', '<a href="?ignore_errors=1">continue</a>. You have been warned ', 'through. Don\'t complain if your installation won\'t work.</div>'; exit; } // If we are at this point that means everything should be fine. We may load // installer and write stuff without bothering about lack of compatibility. chdir('..'); require_once 'lib/basics.php'; require_once 'lib/twig.php'; require_once 'lib/i18n.php'; require_once 'lib/functions.php'; require_once 'lib/sql.php'; // Initialize $error variable. $error = null; // The board doesn't exist, but we should know the theme. $theme = 'spaceboard'; // Also, language should be set to English $lang = 'en'; $fields = array( 'dbserver' => array( 'name' => __('install_server'), 'hint' => __('install_server_hint'), 'type' => 'text', 'value' => issetor($_POST['dbserver'], 'localhost'), ), 'dbname' => array( 'name' => __('install_name'), 'type' => 'text', 'value' => issetor($_POST['dbname'], ''), ), 'dbuser' => array( 'name' => __('install_user'), 'type' => 'text', 'value' => issetor($_POST['dbuser'], ''), ), 'dbpass' => array( 'name' => __('install_password'), 'type' => 'password', 'value' => issetor($_POST['dbpass'], ''), ), 'dbprefix' => array( 'name' => __('install_prefix'), 'hint' => __('install_prefix_hint'), 'type' => 'text', 'value' => issetor($_POST['dbprefix'], 'space_'), ), 'dbport' => array( 'name' => __('install_port'), 'hint' => __('install_port_hint'), 'type' => 'number', 'value' => issetor($_POST['dbport'], 3306), ), 'submit' => array( 'name' => __('install_submit'), 'type' => 'submit', 'value' => __('install_submit_button'), ), );
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Warning: file_exists(): open_basedir restriction in effect. File(../storage/sql.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 8 Warning: session_start(): Session cannot be started after headers have already been sent in /in/XXkfX on line 12 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 43 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 52 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Warning: file_exists(): open_basedir restriction in effect. File(../storage/sql.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 8 Warning: session_start(): Session cannot be started after headers have already been sent in /in/XXkfX on line 12 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 43 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 52 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.2.4 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0, 7.3.32 - 7.3.33, 7.4.33, 8.0.13
<!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 7.2.29 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.32
Warning: file_exists(): open_basedir restriction in effect. File(../storage/sql.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 8 Warning: session_start(): Cannot start session when headers already sent in /in/XXkfX on line 12 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 43 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in:/etc) in /in/XXkfX on line 52 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 7.2.6
Warning: file_exists(): open_basedir restriction in effect. File(../storage/sql.php) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 8 Warning: session_start(): Cannot start session when headers already sent in /in/XXkfX on line 12 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 43 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 52 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 7.1.20
Warning: file_exists(): open_basedir restriction in effect. File(../storage/sql.php) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 8 Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /in/XXkfX:8) in /in/XXkfX on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/XXkfX:8) in /in/XXkfX on line 12 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 43 Warning: file_exists(): open_basedir restriction in effect. File(../storage/plugins) is not within the allowed path(s): (/tmp:/in) in /in/XXkfX on line 52 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.2.3
<!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.2.3 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.2.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.2.2 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.2.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.2.1 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.2.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.2.0 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.6
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.6 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.5 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.4 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.3 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.2 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.1 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.1.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.1.0 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.5 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.4 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.3 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.2 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.1 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 5.0.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 5.0.0 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.9
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.9 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.8
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.8 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.7
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.7 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.6
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.6 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.5 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.4 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.3 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.2 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.1 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.4.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.4.0 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.11
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.11 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.10
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.10 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.9
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.9 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.8
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.8 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.7
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.7 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.6
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.6 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.5 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.4 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.3 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.2 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.1
Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cookie - headers already sent in /in/4j7Yg on line 12 Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cache limiter - headers already sent (output started at /in/4j7Yg:12) in /in/4j7Yg on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.1 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>
Output for 4.3.0
Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cookie - headers already sent in /in/XXkfX on line 12 Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cache limiter - headers already sent (output started at /in/XXkfX:12) in /in/XXkfX on line 12 <!DOCTYPE html><title>Runtime error!</title><div style="border-top: 5px solid red;border-bottom: 5px solid red;background: #FEE;padding: 5px"><p>Sorry, but your server cannot run SpaceBoard.<ul><li>You're using PHP 4.3.0 but you need at least PHP 5.2.4<li><code>mysqli</code> not found, but it's required.<li>Your filesystem isn't writable. Make <kbd>storage</kbd> directory in main directory of your board and give it read and write rights.</ul><p>Or, if you really want to continue you may <a href="?ignore_errors=1">continue</a>. You have been warned through. Don't complain if your installation won't work.</div>

preferences:
250.41 ms | 403 KiB | 314 Q