Request Timed Out After Selecting Template for Virtual Server Site (817930)
The information in this article applies to:
- Microsoft Windows SharePoint Services
SYMPTOMSWhen you create a Team Web site, Document Workspace, or
Meeting Workspace on an extended Virtual Server through Microsoft Windows
SharePoint Services, when you select the template that corresponds to
the type of site you are creating, and then click Submit, you
may immediately receive the "Request timed out" message.
When you
locate the new site directly, the template has been applied
correctly.CAUSEThis problem may occur if Enable full-text search
and indexing has been turned on under SharePoint Central
Administration and after you have created a content database for the
site after you extend the Virtual Server. While you create the database, your
Microsoft SQL Server will be busy creating the files you must have for
full-text searching. When you submit your template selection, the SQL Server
returns a busy message causing the Windows SharePoint Team Services server to
generate the "Request timed out" message.
Note Full-text searches are only available if your SQL Server is
running SQL Server 2000 and full-text searching has been turned on for the SQL
Server.WORKAROUNDThere are two methods to work around this issue:
- Turn off full-text searches in Windows SharePoint Services.
- Modify the Web.config file for Virtual Servers.
Method 1: Turn Off Full-Text Searches- On your Windows SharePoint Services server computer,
click Start, point to All Programs, point to
Administrative Tools, and then click SharePoint
Central Administration.
- Under Component Configuration, click
Configure full-text search.
- In the Search Settings section, click to
clear the Enable full-text search and indexing check box.
- Click OK.
Method 2: Modify the Web.config FileThe modification to the Web.config file will be to add a timing
delay, permitting the SQL server to finish configuring the content database for
full-text searches.
- On your Windows SharePoint Services server computer,
click Start, point to All Programs, point to
Accessories, and then click
Notebook.
- Click File, and then click
Open.
- In the C:\Program files\Common files\Microsoft
Shared\Web server extensions\60\Template\Admin folder, open
Web.config.
- Add the parameter
executionTimeout="999999" to the <httpRuntime.../> tag
as in the example below:
<configuration>
<system.web>
<customErrors mode="Off"/>
<httpRuntime
executionTimeout="999999"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"/>
<authentication mode="Windows"/>
<authorization>
<allow users="*"/>
</authorization>
<identity impersonate="true"/>
</system.web>
</configuration>
STATUS Microsoft
has confirmed that this is a problem in the Microsoft products that are listed
at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 7/27/2006 |
---|
Keywords: | kbprb kbtemplate kbnofix kbBug KB817930 |
---|
|