Ich habe ausversehen meine Config.php überschrieben.
Kann mir einer sagen wie die aufgebaut ist?
Denn ansonsten erhalte ich beim Installieren einen Fehler und ich will doch nur ein Update einspielen...
Bin so blöd... grrrrrrrrrr

Code: Alles auswählen
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysql';
$dbhost = 'localhost';
$dbport = '';
$dbname = 'Datenbankname';
$dbuser = 'Datenbankuser';
$dbpasswd = 'Datenbankpasswort';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>
Code: Alles auswählen
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysql'; //oder mysqli
$dbhost = 'localhost';
$dbport = '';
$dbname = 'phpbb3';
$dbuser = 'user';
$dbpasswd = 'password';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>