IIS config:
first.. when you install IIS make sure you choose atleast thease:
- Common Files
- Internet Information Services Snap-In
- Personal web manager (if its there)
- World Wide Web Server
1. find php4ts.dll and a php.ini in your php folder and copy them to C:\Windows\System32\
2. do the required ini settings
3. open Control Panel -> Administrative Tools -> Internet Information Services -> local computer -> Default web site properties
4. add ISAPI filters:
Filter Name: PHP
Executable: php4isapi.dll OR php5isapi.dll (in your php folder)
5. Homedir -> Configuration -> Mappings -> add
executable: php4isapi.dll OR php5isapi.dll (in your php folder)
extensions: .php (NOTE the dot)
6. click OK to close web site properties
7. restart World Wide Web Publishing service (Control Panel -> Administrative Tools -> Services)
then your all set.. save all php files in C:\Inetpub\wwwroot\ and use them with
http://localhost/file.php
btw.. sorry that you had to wait so long.. got my net working today..
hope it helps
Wille