Forum Moderators: phranque
I've got the Apache2/PHP/mySQL installed on my Win XP platform and all are working normally from the script test point of view.
I was trying to install the phpMyAdmin but failing to get the expected result through the browser test (index.php) . Since I am using the localhost instead of the real domain name, I have done all parameters changes as recommended for config.inc .
They are:
$cfgPmaAbsoluteUri ='http://localhost/phpmyadmin/';
(where i put all the files under phpmyadmin folder which right under drive C.)
$cfgServers[$i]['host'] = 'localhost";
$cfgServers[$i]['user'] = 'root';
$cfgServers[$i]['password'] = 'mypassword';
Apart from these parameters, is anything missed out?
Looking forward to seeing your recommendation!
Thanks in advance.
rgds/kennethckk
The Apache server will serve your documents from the directory specified in your configuration file (httpd.conf). Are you certain that you are telling Apache to get your file from the "phpmyadmin folder which right under drive C"?
Resources:
DocumentRoot [httpd.apache.org]
Mapping URLs to Filesystem Locations [httpd.apache.org]