Hi all,
I have downloaded and installed perl with apache and php
Here are the readme file folders for each part of the packaged file
Perl-5.8-win32-bin-0.1.exe
openssl-0.9.6h
php-4.23
mod_perl-2.0
httpd-2.0.43
AP804_source
I have apache running ok and perl, but I can't get the hello world file for
php to display Hello World
<html><body>
<?php
$myvar = "Hello World";
echo $myvar;
?>
</body></html>
I've uncommented these lines in my Apache2 httpd.conf file
# Uncomment the following for php
LoadFile "C:/Apache2/bin/php4ts.dll"
LoadModule php4_module modules/php4apache2.dll
AddType application/x-httpd-php .php
Also the Paths to Perl and Apache are in my autoexec.bat file.
The .dll files for php are in the apache2/bin folder.
What else should I check for?