Stats: Win 98, Apache 1.3.26, PHP 4.2.2
I've just installed Apache 1.3.26 and PHP 4.2.2 on my computer. I can start Apache w/ PHP in a console window, no prob, but when I create a PHP file, place it in the C:\apache\htdocs, then open it in IE 5.5, I get nothing, just a blank screen.
I'm not sure where to look for the problem. This is what I have in my httpd.conf file:
ScriptAlias /php/ "c:/php/"
LoadModule php4_module c:/php/sapi/php4apache.dll
AddType application/x-httpd-php .php
AddType application/x-httpd-php .inc
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php "/php/php.exe"
And this is what I've set up in my php.ini file:
doc_root = c:\apache\htdocs
extension_dir = c:\php
And this is the simple PHP file (my.php) I created:
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo "Hello World<p>"; ?>
</body>
</html>
Any suggestions?