Bunun sorununu çözdüm kuramayıp veya yanlış kurup admin panaline ulaşamayan arkadaşlar için anlatıyorum.
phpBB3 sitesi kurulum yapıldığında site yanlış bir kurulum yapar veye bu sorun mayadminle ilgili veya phpBB3 kurulumuyla ilgili olabilir .
kurulum bitiminden sonra açın config.php dosyanızı ve aşağıdaki kodu inceleyin??
- Kod: Tümünü seç
doğru olan
=======================================
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysql';
$dbhost = 'localhost';
$dbport = '';
$dbname = 'forum';
$dbuser = 'forum';
$dbpasswd = '123456';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>
========================================
========================================
yanlış olan
============================================
<?php
// phpBB 3.0.x auto-generated configuration file
// Do not change anything in this file!
$dbms = 'mysql';
$dbhost = '';
$dbport = 'localhost';
$dbname = 'forum';
$dbuser = 'forum';
$dbpasswd = '123456';
$table_prefix = 'phpbb_';
$acm_type = 'file';
$load_extensions = '';
@define('PHPBB_INSTALLED', true);
// @define('DEBUG', true);
// @define('DEBUG_EXTRA', true);
?>