Strona wymaga włączonej obsługi pliku .htaccess.

Poradnik na temat właczania pliku htaccess

'; die(showError($title, $text)); } */ /* Od wersji 1.2.0 mod_rewrite nie jest już wymagany if(!in_array('mod_rewrite', apache_get_modules())) { $title = 'Brak wymaganych rozszerzeń'; $text = '

Na swoim serwerze nie posiadasz modułu rewrite wymaganego do poprawnego działania tej strony.

Posiadasz system Ubuntu? Świetnie! Uruchom poniższe komendy, by włączyć wymagany moduł:

sudo a2enmod rewrite
sudo service apache2 reload

Używasz system Debian? Uruchom owe komendy pomijając przedrostek sudo:

a2enmod rewrite
service apache2 reload

Jeśli używasz hostingu i nie masz dostępu do konsoli, skontaktuj się z administratorem lub pomocą techniczną Twojego hostingu.

'; die(showError($title, $text)); } */ function isPHPVersionSupported() { if (!defined('PHP_VERSION_ID')) { $version = explode('.', PHP_VERSION); define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2])); } return PHP_VERSION_ID >= 50300; } if (!isPHPVersionSupported()) { $title = 'Unsupported PHP version'; $text = '

You are using old, unsupported PHP version.

Your PHP version: ' . phpversion() . ', required PHP version: 5.3.0.

Please update your PHP installation and try again.

'; die(showError($title, $text)); } if(!file_exists(__DIR__ . "/../config/config.php")) { $title = 'config.php does not exists'; $text = '

Please go into the directory config and rename config.template.php to config.php.

Edit the new file and tweak it to suite your needs.

'; die(showError($title, $text)); } // FUNCTION function showError($title, $text) { ?> <?php echo $title; ?>

Błąd