I have installed phpMyAdmin on Fedora 11 using YUM, along with MySQL, PHP and Apache.
The web and database servers are operating fine.
However, when loading the web page
http://localhost/phpMyAdmin/ a box appears asking for a username and password.
I have tried many combination's including the root with no success. What value does it want, or what setting is wrong.
In studying the file httpd.conf in somehow loads the file phpMyAdmin.conf
The httpd.con reads:
Quote:
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
|
The phpMyAdmin.conf reads:
Code:
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin
<Directory /usr/share/phpMyAdmin/>
order deny,allow
deny from all
allow from 127.0.0.1
allow from 192.168.0.50
allow from ::1
</Directory>
The static IP address for this computer is 192.168.0.50
So the page loads with the following statement:
Quote:
|
Wrong username/password. Access denied.
|
I've searched and searched for a solution to this and cannot find one. Any suggestions?
Thanks in advance,
Douglas