I installed PHP on a Windows 7 x64 machine with IIS7 through the Windows web application gallery. Everything seemed to be all right, and a simple phpinfo () page works the way you think. However, whenever I execute a POST request to a PHP page, the request just hangs forever. See a very simple test page below ... It doesnβt even have dynamic content.
I spent too much time on this. Any ideas? Thanks a bunch!
page.php:
<html> <body> <form action="page.php" method="post"> <textarea name="apa"></textarea> <input type="submit" value="ok" /> </form> </body> </html>
Handler mapping:
<handlers> <add name="PHP_via_FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\PHP\php-cgi.exe" resourceType="Either" requireAccess="Script" /> </handlers>
kodbuse
source share