First attempt to install on desktop. System: Windows XP. FYI: also using IIS on port 80.
Back in Sept 08 I installed Apache 2.2.9 and php 5.2.4 using the install instructions found here. It's listening on port 8080.
I got to the point where I executed http://localhost:8080/index.html and http://localhost:8080/info.php. Then, I had to abandon the project I was working on.
Now, I'm finally back to the project (learning php) and I can't get anything other than blank screens when I try to execute anything (other than the 2 modules mentioned above).
The script I'm trying to execute is:
<?php
$d=date("D");
if ($d=="Fri")
{
echo "Hello!<br />";
echo "Have a nice weekend!";
echo "See you on Monday!";
}
?>
The access log entry:
127.0.0.1 - - [30/Mar/2009:06:01:24 -0500] "GET /php/date.php HTTP/1.1" 404 210
Any help would be greatly appreciated.