This line: AddType application/x-httpd-php .php
in your httpd.conf file should look like this:
Code:
AddType application/x-httpd-php .php .php3 .php4
Then you may also want to put this line aswell directly after the AddType:
Code:
AddHandler application/x-httpd-php .php .php3 .php4
Then also make sure your mysql root password has been changed once since the install, this is 'some times' required to access phpmyadmin for the first time. ( I say this, as I have seen this issue on production servers many times )
To change the mysql root password use these commands:
Code:
mysql -u root
UPDATE mysql.user SET Password=PASSWORD('newpwd') WHERE User='root';
FLUSH PRIVILEGES; Replace “newpwd” with the actual root password that you want to use.
now restart apache and mysql
If this sitll doesnt work, let me know, and if not please attache copys of your httpd.conf and php.ini files.