Hello
I have installed PHP5 on my Windows XP machine.
I have also installed Apache2 and tried to get them both to work together.
I have added the following line to Apache's httpd.conf file:
LoadModule php5_module C:\php\php5apache2.dll
and also added the following lines:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
I have written a small PHP script and placed it in the \htdocs directory of apache.
When I try to run it locally: http://localhost/test.php
I get the following error in Apache's log file:
[client 127.0.0.1] script 'C:\Program Files\Apache Group\Apache2\htdocs\test.php' not found or unable to stat
What could cause these problems?
It seems like Apache is not recognizing the PHP script.
thanks in advance