I have been trying to make php4 work for almost 3 hours.
I followed this link and I got Apache works fine.
http://www.coe.uncc.edu/~asingh/setup_apm.htm
In the php4 testing part, when I did the test, instead of getting php, I got a pop up window asking open/save test.php file. As I said before, apache works fine so when i did
http://localhost
I could see two links - test and testmysql.php
Here is my httpd.conf file.
ServerName localhost:80
#DocumentRoot "E:/Apache Group/Apache2/htdocs"
DocumentRoot "E:/phpWeb"
#<Directory "E:/Apache Group/Apache2/htdocs">
<Directory "E:/phpWeb">
#
# AddType allows you to add to or override the MIME configuration
# file mime.types for specific file types.
#
#AddType application/x-tar .tgz
#
# AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
# information on the fly. Note: Not all browsers support this.
# Despite the name similarity, the following Add* directives have nothing
# to do with the FancyIndexing customization directives above.
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
#
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
ScriptAlias /php4/ "E:/php4win"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
Action application/x-httpd-php "/php4/php.exe"
As you can see, I put php4 on E drive named with php4win and phpWeb for web files.
Please help me!!!
Thanks,


