run php site on iis express

diversereality

New Member
I've been trying to run a simple hello world php site from iis express, following this question http://stackoverflow.com/a/7086364/744610but i keep getting an error 500 from the iis, and in the cmd i can see a 404 error regarding a fav icon.detailed informaion from the 500 error\[code\]Detailed Error Information:Module FastCgiModuleNotification ExecuteRequestHandlerHandler PHP-FastCGIError Code 0x80070002Requested URL http://localhost:32701/index.phpPhysical Path c:\myphpsite\index.phpLogon Method AnonymousLogon User AnonymousRequest Tracing Directory C:\Users\user\Documents\IISExpress\TraceLogFiles\PHPTEST\[/code\]i double checked at the physical path is indeed correct.the cmd:\[code\]Request started: "GET" http://localhost:32701/index.phpRequest ended: http://localhost:32701/index.php with HTTP status 500.0Request started: "GET" http://localhost:32701/favicon.icoRequest ended: http://localhost:32701/favicon.ico with HTTP status 404.0Request started: "GET" http://localhost:32701/index.phpRequest ended: http://localhost:32701/index.php with HTTP status 500.0Request started: "GET" http://localhost:32701/favicon.icoRequest ended: http://localhost:32701/favicon.ico with HTTP status 404.0\[/code\]i tried f5'ing a couple of times, hence the repetitions.my index.php\[code\]<html><body><?phpecho "Hello world";?></body></html>\[/code\]
 
Back
Top