I have a problem with a PHP. I install PHP on IIS 7 on Windows Vista. I unpacked archieve in C:\PHP folder. I configure IIS
Manager in Control Panel (configure path in Applications on C:\PHP). I also renamed php.ini-recominded to php.ini and changed that file (i set doc_root = c:\inetpub\wwwroot and other php directives, like it says in install.txt file for installation on IIS). I edit Path variable in Enviroment Variables as well. Then, I created php file with following code:
<?php
echo 'Hello';
?> and save it in wwwroot folder as "prvi.php". Then I tried to run that script by typing localhost/prvi.php, I get following error:
HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
IIS is installed OK (when i type localhost in web browser, I get it's home page).
Has anybody idea what could be a problem?
Thanks in advance