Posts Tagged ‘IIS’

For web developers, sometimes it is necessary to run a re-occurring task on the web server, such as sending out emails for notifications, or doing a periodic update without interaction from the client. On UNIX-like Operating Systems, the well-known Cron is a simple to use option, on Windows, it’s Task Scheduler. In this tutorial, I will step through the process of setting up a scheduled task to have a web script executed periodically.

Wednesday, August 11th, 2010 at 15:58 | 0 comments

URL Rewriting is a powerful feature for web servers that provides the ability to modify a web page’s URL to display a more friendly links for users and relevance for Search Engine Optimization (SEO). For Apache web server users, a mod_rewrite module is readily available, however, for IIS 6.0 users, it’s not. (For IIS 7.0, a URL Rewrite Module has been introduced.) In this tutorial, I’ll introduce a free URL Rewriter for IIS 6.0 (and later), how to install it, and the recommended method of usage.

Monday, August 9th, 2010 at 21:31 | 0 comments

Despite my lack of updates, I’ve noticed based on search query logs of visitors arriving on this website, a lot of them are regarding installing PHP 5.3 on IIS. Due to the fact that you can no longer use ISAPI with PHP 5.3, I’ve had the same frustrating experience as others when I was trying […]

Sunday, August 8th, 2010 at 22:03 | 0 comments
Categories: PHP, Web Development
Tags:

Microsoft now has an official SQL Server Driver to use with PHP on IIS. This is a huge and step forward for PHP/SQL Server developers since beginning with PHP 5.3, the usually packaged MSSQL extension has been deprecated.

Saturday, August 7th, 2010 at 23:09 | 6 comments
Tags: , ,

Beginning from PHP 5.3, PHP can only be installed on IIS via a CGI Handler, and no longer through ISAPI. In this tutorial, we’ll step through the details of how to set up FastCGI and PHP on IIS.

Thursday, February 18th, 2010 at 20:40 | 24 comments
Tags: , ,

Update: I’ve started an IIS Tutorial Series on Talking to SQL Server with PHP on IIS which contains more details of this installation. It’s been a while since I’ve touched on the issue of having PHP 5.3 talk to a MS SQL Server on IIS (without using ODBC or other connection methods).  Last time I’ve […]

Sunday, September 27th, 2009 at 13:17 | 2 comments
Categories: PHP, Web Development

Update: This article is considered outdated. I’ve started an IIS Tutorial Series on Talking to SQL Server with PHP on IIS. Last time I posted about PHP deciding to remove the MS SQL Server Connection driver and library from the PHP 5.3 package, and mentioned that Microsoft now has its own version of the MS […]

Friday, August 7th, 2009 at 20:06 | 1 comment
Categories: Uncategorized
Tags: , , ,
TOP