Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I am setting up a new server. I have installed Apache 2.2.17, PHP 5.3.3, MySQL 5.1.53 and phpMyAdmin 3.3.8 running on a Windows 2008 (32 bit) OS.

I have configured Apache and PHP so they appear to be working fine. I have created the standard test php page with the following code and everything appears to be working fine.

<?php
//index.php
phpinfo();
?>

I also see the mySQL and mySQLi section in the above webpage, so it appears that that I have the proper extensions loaded for mySQL access.

The problem that I am having centeres around myPHPAdmin. I have this installed and I can access to the login screen at http://localhost/pma

I login using "root" and the password I have setup for root. After a delay of 30 seconds or so the web page goes to a blank screen, and the url is now http://localhost/pma/index.php?token=

No error is ever displayed - however nothing usable is either.

I have confirmed that mySQL is running by going to the command line and logging into mySQL from there.

I have double checked my configuration but I am not having any luck getting this to work. I have also disabled the Windows firewall, but that did not change anything. I installed mySQL using the standard port 3306.

Any advice would be greatly appreciated.

share|improve this question

closed as off topic by MDMarra, mdpc, Khaled, Iain Jan 27 at 9:46

Questions on Server Fault are expected to relate to professional server, networking, or related infrastructure administration within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

What authentication method have you set up phpMyAdmin to use?

It may be that phpMyAdmin is attempting to connect through a method that isn't configured correctly.

Can you connect from a standard php script?
Something like:

$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
share|improve this answer
I have tried both Cookie and Config, specifing the user name and password in the config.inc.php file, however both result in the same issue. – Richard West Nov 29 '10 at 19:39
I've updated my answer a little. – dig412 Nov 29 '10 at 20:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.