(A little overkill, but helpful to anyone searching in the future.)
You can always use the root:Password combo for testing and then switch back to the limited-access client once it works.
It is something small..and php install doesn't seem to make all three of the needed apache line additions..just the two.
If you're using apache/php, make sure that you have the compatible versions of each based on the OS that you're using.
(Apache Lounge has the VC6 build that is compatible with 32-bit Win OS's..and make sure you read up on using the
thread-safe versus non-thread safe versions of apache.)
If you're getting the 'can't load' certain module errors, this website gives a decent idea of what php options need to be
checked on install:
http://www.websiteadministrator.com....hp533_pg5.html
Apache needs to properly configure as well, and I'm assuming that you have that right. You should be able to access the
default 'index.html' if apache is working.
However, when installing php, the installer only makes these changes to the apache config file:
Code:
#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
PHPIniDir ""
LoadModule php5_module "php5apache2_2.dll"
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
One more line needs to be added (make sure the references match the version of php that you're using.) This is what mine looks like:
Code:
PHPIniDir "C:/PHP"
LoadModule php5_module "C:/PHP/php5apache2_2.dll"
AddType application/x-httpd-php .php
That 'AddType' is usually what kills an otherwise 'clean' install... (I forced the phpinidir on my system to facilitate some
troubleshooting I had to do. Not sure if that is absolutely needed, but doesn't break it.)
Let us know if any of this helped or if you're still having issues.
(Don't forget to restart the server once you make the config changes.)
U