I've downloaded and installed Apache (apache_1_3_14_win32_r2.exe) on Windows NT
The server is running and is ok
I've then downloaded the last release of php: php-4_0_4pl1-Win32
I installed it on c:\php4
I've made a copy of php.ini on C:\Winnt.
I've moved php4ts.dll to C:\Winnt\System32
I've then added the following lines to the http.conf file (some were already in comments):
ScriptAlias /php4/ "C:/php4/"
AddType application/x-httpd-php4 .php
Action application/x-httpd-php4 "/php4/php.exe"
But it doesn't work:
- on Netscape 4.7, when I write the address of the simple php file I've created, it just shows me the code:
<head><title>PHP Test</head></title>
<body>
<?php echo "Hello World<P>"; ?>
</body>
- on IE, it asks me to download the file
I had a look to the FAQs 6.8 on php.net and my problem seems to mean that PHP is not invoked but the lines I've added are right!
Any help would be greatly appreciated as I am blocked in my work
Gael