- Adres van je forum: http://permanenteportefeuille.eu
Event. modificaties op je forum: Portal en Smix feed
Wanneer ontstond het probleem?
phpBB versie:3.0.8
Heb je onlangs iets veranderd aan je forum?
Wat is het probleem?

Ik probeer te updaten naar 3.0.9 maar ik krijg na het ftp'en van de map "install" en na het browsen naar http://www.mijnsite/install/ deze opsomming van tekens in de browser.
Code: Selecteer alles
/** * @ignore */ if (!defined('IN_PHPBB')) { exit; } /** * Determine if we are able to load a specified PHP module and do so if possible */ function can_load_dll($dll) { // SQLite2 is a tricky thing, from 5.0.0 it requires PDO; if PDO is not loaded we must state that SQLite is unavailable // as the installer doesn't understand that the extension has a prerequisite. // // On top of this sometimes the SQLite extension is compiled for a different version of PDO // by some Linux distributions which causes phpBB to bomb out with a blank page. // // Net result we'll disable automatic inclusion of SQLite support // // See: r9618 and #56105 if ($dll == 'sqlite') { return false; } return ((@ini_get('enable_dl') || strtolower(@ini_get('enable_dl')) == 'on') && (!@ini_get('safe_mode') || strtolower(@ini_get('safe_mode')) == 'off') && function_exists('dl') && @dl($dll . '.' . PHP_SHLIB_SUFFIX)) ? true : false; } /** * Returns an array of available DBMS with some data, if a DBMS is specified it will only * return data for that DBMS and will load its extension if necessary. */ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20x_options = false) { global $lang; $available_dbms = array( 'firebird' => array( 'LABEL' => 'FireBird', 'SCHEMA' => 'firebird', 'MODULE' => 'interbase', 'DELIM' => ';;', 'COMMENTS' => 'remove_remarks', 'DRIVER' => 'firebird', 'AVAILABLE' => true, '2.0.x' => false, ), 'mysqli' => array( 'LABEL' => 'MySQL with MySQLi Extension', 'SCHEMA' => 'mys
Code: Selecteer alles
[phpBB Debug] PHP Notice: in file /install/index.php on line 361: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:564)
[phpBB Debug] PHP Notice: in file /install/index.php on line 362: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:564)
[phpBB Debug] PHP Notice: in file /install/index.php on line 363: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:564)
[phpBB Debug] PHP Notice: in file /install/index.php on line 364: Cannot modify header information - headers already sent by (output started at /includes/functions_install.php:564)
Wat te doen?

Alvast bedankt.