bgrskzc adlı üyeden alıntı: mesajı görüntüle
Selam arkadaşlar, bende AppServ kurulu, portu 81 olarak ayarladim ve;
localhost:81/ olarak localhostuma girebiliyorum, indexi görebiliyorum.
Ama localhost:81/phpmyadmin yaptığım zaman kullanıcı adı şifreyi istiyor, yazıyorum ama girmiyor.. Beyaz bir sayfa çıkıyor, yardım eder misiniz?
PhpMyAdmin'in bulunduğu dizini aç (eğer bilmiyorsan config.inc.php diye arat) ve config.inc.php yi aç. aşağıda gördüğün gibi 15.satırda bir port ayarı var. orada 80 yazıyorsa 81 yap. mysql'i ve apache'yi resetle. muhtemelen sorunun düzelecektir.

<?php
/*
 * Generated configuration file
 * Generated by: phpMyAdmin 3.1.1 setup script by Piotr Przybylski <piotrprz@gmail.com>
 * Date: Tue, 16 Dec 2008 09:58:49 +0100
 */

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '80';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '********';
$cfg['Servers'][$i]['password'] = '********';
$cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;

/* End of servers configuration */

$cfg['DefaultLang'] = 'en-utf-8';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>