For the published sites to work correctly, publishing server must meet the following requirements:
For detailed information about configuring ASP.NET 2.0, refer to the ASP.NET 2.0 Deployment Guide.
Scripting permission enabled (working directory menu > Execute Permissions > Scripts Only).App_Data folder does not exist, read/write/delete permission for the root folder is required.App_Data folder exists, then read/write/delete permission for the App_Data folder and read permission for the root folder are required.Note: 1. If you use IIS 5.0, the above permissions should be given to the identity specified in /configuration/system.web/deployment/processModel/@userName of the %WINDIR%\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config file.
2. If you use IIS 6.0, the above permissions should be given to the application pool identity specified in IIS settings (Start>IIS Manager>Application Pools>respective application pool> Properties>Identity tab).
%WINDIR%\temp folder.OleDbPermission for accessing Microsoft Access database and with WebPermission for some of the modules to work correctly.OleDbPermission is set in the web_mediumtrust.config file, stored on the publishing server. By default, this permission is disabled. To grant this permission, you should add the OleDbPermission class to the following sections of the web_mediumtrust.config file:SecurityClasses Example:
<SecurityClass Name="OleDbPermission"
Description="System.Data.OleDb.OleDbPermission, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
PermissionSet Example:
<IPermission class="OleDbPermission" version="1" Unrestricted="true" />
WebPermission is set in the web_mediumtrust.config file. To grant this permission, add the WebPermission class to the PermissionSet section of the web_mediumtrust.config file.Example:
<IPermission class="WebPermission" version="1" Unrestricted="true" />
Note: The server where Plesk Sitebuilder is installed must work in the Full Trust mode.
More detailed information about OleDbPermission you can find here.
More detailed information about trust levels you can find here.