Difference between revisions of "IIS"

From Joomla! Documentation

m (Adjusted links)
(Merging from IIS)
Line 1: Line 1:
Whilst IIS accounts for relatively few users, compared to Apache, there are enough to warrant providing information which is unique.
+
Whilst IIS (Internet Information Services, a Microsoft web server) accounts for relatively few users, compared to Apache, there are enough to warrant providing information which is unique.
  
PHP can run on IIS (Microsoft web server, Internet Information Services). So, a Joomla! web site also can run on IIS.
+
PHP can run on IIS, so a Joomla! web site also can run on IIS.
  
 
The PHP.net website should be referenced, regarding the installation of PHP on Windows and the configuraiton of IIS to process PHP webpages and scripts.
 
The PHP.net website should be referenced, regarding the installation of PHP on Windows and the configuraiton of IIS to process PHP webpages and scripts.
 +
 +
To get started, here are some helpful links for developers who want to install PHP and Joomla! on IIS.
 +
 +
* Install Joomla for Windows and IIS using the Web Platform Installer - http://www.microsoft.com/web/joomla
 +
* PHP on Windows and IIS; building an IIS-optimized PHP - http://www.microsoft.com/web/php
  
 
The two most common problems encountered by Joomla! admins whose sites are on IIS webservers are:
 
The two most common problems encountered by Joomla! admins whose sites are on IIS webservers are:

Revision as of 06:49, 9 June 2011

Whilst IIS (Internet Information Services, a Microsoft web server) accounts for relatively few users, compared to Apache, there are enough to warrant providing information which is unique.

PHP can run on IIS, so a Joomla! web site also can run on IIS.

The PHP.net website should be referenced, regarding the installation of PHP on Windows and the configuraiton of IIS to process PHP webpages and scripts.

To get started, here are some helpful links for developers who want to install PHP and Joomla! on IIS.

The two most common problems encountered by Joomla! admins whose sites are on IIS webservers are:

  • Setting the website's directory/filesystem permissions correctly
  • Enabling SEF URLs

Setting the filesystem permissions[edit]

Conceptual Overview[edit]

Windows filesystem permissions are more complex than the 3-level, 3-value Unix-style rw-r--r-- conventions.

Windows servers have a user called IUSR, which corresponds to the apache user on many Linux systems. PHP scripts run under the IUSR account.

Levels[edit]

A directory or file does have an owner, and Windows does have groups, but there is no "everyone else" under Windows.

There is a group called Users. This corresponds to all accounts used by human beings to deliberately interact with the server. But accounts for services, system operations, and software user permisions do not belong to that group, and in fact no accounts at all (human or otherwise) have any privileges which aren't explicitly granted either directly to the user or by membership in some group.

Values[edit]

Beyond Read, Write and Execute, Windows permissions include additional values. The important ones to know about for a Joomla website are Read and Write.

HowTo configure the permissions[edit]

When logged in to the Windows server, run Windows Explorer, and navigate to inetpub.

Right-click the directory which holds your Joomla site.
Get Properties, tab to Security.
Click ADD.
Make sure that the LOCATION field is set to the local computer, not a domain controller.
Type iis_iusrs into the field for identifying the user/group you are granting access to.
Confirm.
Highlight the iis_iusrs entry in the access control list.
Check the boxes for Read & Execute, List Folder Contents, Read, and Write
Confirm, put the security window away now.
Open Start -. Administrator -> Computer Management.
Navigate to Local Users and Groups -> Groups.
Find or create the group iis_iusrs
Add a member to the group:
again, make sure that the LOCATION field is set to the local computer, not a domain controller.
Type IUSR into the field for identifying the user/group you are granting access to.
Confirm.
Save.

Run the Joomla installer again, and enjoy your PHP user's write privileges in your website folder.

SEF URLs[edit]

The functioning of SEF URLs depends on "URL rewriting" - matching patterns in incoming HTTP requests, and passing the request to the webserver in a different format. Joomla can only understand the parameters present in the "ugly" request, so the human-readable path in the incoming HTTP request needs to be re-written for Joomla.

Apache's mod_rewrite[edit]

mod_rewrite is the familiar way by which many webmasters translate nice human-readable, spider-friendly URL requests like /about_us/contact_information into the "ugly" internal server path like /index.php?option=com_content&view=article&id=999&Itemid=23 that makes Joomla serve up some content. A text file called .htaccess contains the rewrite rules, which are written according to a specific syntax.

IIS[edit]

Before Windows Server 2008 and IIS7, only third-party add-ons could add URL rewriting functionality to an IIS webserver. For servers today still running IIS6 or earlier, these are still available. CodePlex is a website and code-sharing developer forge associated with Microsoft, and it hosts at least two good-quality URL rewrite solutions for IIS6. At least one of these modules will parse and execute the same rewrite rules which work in Apache .htaccess files.

Windows Server 2008 comes with IIS7, which is the first webserver for which Microsoft provides a native module which provides URL rewriting functionality.

The module is called "IIS URL Rewrite Module" and is free to download and install on your IIS7 webserver.

The IIS7 module configures and stores its rules in a very different way than the format Apache provides via .htaccess. The rules are stored as XML data in the web.config file in a website's root. The IIS Management Console provides a GUI and wizard for creating and testing rules. The wizard is capable of reading a text file with .htaccess-type rules and converting them to the native format.

Specific instruction information is available on SEF URLs on IIS.