WebMatrix Beta first look!
I revisit WebMatrix site recently just to see what’s up with this nice little web editor from Microsoft and I must say I am in for a pleasantly surprise!
WebMatrix turn into a small full Web development that installs quickly and it support database and PHP. It comes with a build in IISExpress and it works extremely well for web site development.
If you use the web installer to install the open source script like WordPress, Drupal, etc then WebMatrix will configure to support PHP automatically but if you create a site from scratch you have to do some manual tweaking!
You have to edit and a few lines in the config file as shown below and will you be able to edit your PHP file in your site.
C:\Users\[youruserlogin]\Documents\IISExpress8\config\applicationhost.config
< location path="wordpress" >
< system.webServer >
< handlers >
< add name="PHP via FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\Program Files\PHP\php-cgi.exe" resourceType="Either" / >
< /handlers >
< /system.webServer >
< /location >
Note: The above is assuming you install PHP from the web installer
Relevant links:
