Running a project on IIS 7.0 or IIS 7.5
- Open Internet Information Services (IIS) Manager.
- In the left pane, expand your server’s node and in the context menu of Sites node, select Add Web Site…
Add Web Site window appears.
- In Site name, enter a name for the website.
- If you have a dedicated application pool for this website, click Select… button and select it from the Application pool dropdown box. Otherwise, for each website, you are adding, IIS creates a corresponding Application pool.
- In Physical path, click … button and browse to select inetpub\wwwroot\<your project name> folder, where you have chosen to locate your project files.
- In Binding section, if you have a dedicated IP address for the website, select it. If you have multiple websites sharing the same IP address, enter the host name of your website.
- Click OK.
The Add Web Site window closes.
- In the left pane, click Application Pools node.
- Select the application pool of your website and in the right pane, click Basic Settings…
- In .NET Framework version dropdown box, select .NET Framework v4.0.30319.
If there is such entry, you must install .NET Framework 4.0.
- In Managed pipeline mode dropdown, select Integrated.
- Click OK.
- Since Sitefinity configurations are stored in the App_Data folder, the Application pool must have write permissions to this location. To grant such permissions, perform the following:
- Open folder inetpub\wwwroot\<your project name>.
- Open the context menu of App_Data folder and click Properties.
- On tab Security, click Edit… » Add…
- In From this location, select your server.
- Enter the object name using the following naming convention: IIS APPPOOL\<Application pool name>.
- Click OK.
- Grant permission to modify the App_Data folder, by selecting Allow checkbox of Modify permission.
- Click OK » OK.
- Perform procedure Configuring and starting a project.
Related topics:
Feedback