This is my first time installing PHP. I tried to install PHP4 on WinNT 4.0 (workstation) with PWS, but it failed.
I followed the instructions on the readme file that came with the PHP4 installation files exactly. I copied the PHP4TS.DLL file to \Winnt\system32, changed the file php.ini-dist to php.ini, edit the PWS-php4.reg and executed it (C:\Program Files\php\php4isapi.dll), and updated my PWS manager (\myphp). I did all as per instructed.
Then, I created a little PHP file with the following content and saved the file as test.php under C:\Program Files\php.
<BODY>
<?PHP
echo "My first PHP installation!";
?>
</BODY>
However, when I tried to execute this file (http://localhost/myphp/test.php), the web browser output only this sentence: "The specified module could not be found."
So, I opened the php.ini file and remove all the semicolon (";") in front of all the extensions. When I rebooted my system, it still gave me the same error message.
What should I do?