Thanks for the quick reply! That's the site I used, so in IIS I have a server level handler mapping:
*.php
FastCgiModule
C:\Users\Kevin\Documents\PHP7\php-cgi.exe
PHPviaFastCgi
Invoked only if mapped to File or Folder.
And in my php.ini file I have the requisite:
fastcgi.impersonate = 1
fastcgi.logging = 0
cgi.fix_pathinfo=1
cgi.force_redirect = 0
And upon closing, I restart my IIS server, and when I load localhost, the IIS7 splash page comes up, but when I put phpinfo.php into the wwwroot folder and try to go to localhost/phpinfo.php, I get Error 500:
HTTP Error 500.0 - Internal Server Error
An unknown FastCGI error occured
Detailed Error Information
Module FastCgiModule
Notification ExecuteRequestHandler
Handler PHPviaFastCGI
Error Code 0x8007010b
Requested URL http://localhost:80/phpinfo.php
Physical Path C:\inetpub\wwwroot\phpinfo.php
Logon Method Anonymous
Logon User Anonymous
Any thoughts as to why this might be?
Thanks again for all your help.
Kevin