I downloaded and installed WampServer 2.5 64 bits. Installation worked fine and my WAMP server status is green. I can connect to localhost and see the admin panel. I can log into the mysql console and it seems to work fine as well.
The big problem is that the server seems to not be parsing PHP code at all. When I click on phpinfo() from the localhost panel I only see the source code. Here are a few lines of what I see when I click on the phpinfo() link. The url it takes me to is
http://localhost/?phpinfo
rder="0" cellpadding="3" width="600">
<tr><td class="e">LDAP Support </td><td class="v">enabled </td></tr>
<tr><td class="e">RCS Version </td><td class="v">$Id$ </td></tr>
<tr><td class="e">Total Links </td><td class="v">0/unlimited </td></tr>
<tr><td class="e">API Version </td><td class="v">3001 </td></tr>
<tr><td class="e">Vendor Name </td><td class="v">OpenLDAP </td></tr>
<tr><td class="e">Vendor Version </td><td class="v">20433 </td></tr>
<tr><td class="e">SASL Support </td><td class="v">Enabled </td></tr>
</table><br />
<table border="0" cellpadding="3" width="600">
<tr class="h"><th>Directive</th><th>Local Value</th><th>Master Value</th></tr>
<tr><td class="e">ldap.max_links</td><td class="v">Unlimited</td><td vclass="v">Unlimited</td></tr>
</table><br />
I've dug around and most places say to make sure that apache is properly configured but I've checked my httpd.conf file and I have the following lines in there.
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
Along with the
LoadModule php5_module
which has the appropriate file path following it.
I've tried re-installing wamp several times over several versions and in different directories. I can't seem to figure out what is wrong with it, any help would be appreciated.
EDIT:
A few images that might be able to help.
https://i.stack.imgur.com/3vBtt.png Wamp Server Icon is green.
https://i.stack.imgur.com/TI8Tx.png Localhost URL WAMP panel.
https://i.stack.imgur.com/Mldhs.png What happens when I try to navigate to the phpInfo() link on the WAMP panel.
https://i.stack.imgur.com/rWDiF.png What happens when I try to navigate to the phpmyadmin link on the WAMP panel.