Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

FP2000: Error Message: "Document Root Missing From Config File"


View products that this article applies to.

This article was previously published under Q264924

↑ Back to the top


Symptoms

When you install Microsoft FrontPage 2000 Server Extensions to your Apache multihosted Web server, you may receive an error message similar to the following during the installation:
Web Server Configuration Problem: Document Root Missing From Config File

↑ Back to the top


Cause

This behavior can occur if the VirtualHost directive has an improper name in it.

For example:
<VirtualHost 2net2.net>
ServerName www.2net2.net
ServerAlias 2net2.net
ServerAdmin webmaster@2net2.net
DocumentRoot /usr/home/blangdon/2net2.net/public-html/ 
ErrorLog /var/log/httpd/errors/fp_errors
TransferLog /var/log/httpd/access/2net2.net
ScriptAlias /cgi/ /www/netsite-cgi/ 
ScriptAlias /cgi-bin/ /usr/home/blangdon/2net2.net/cgi-bin/ 
AddHandler server-parsed shtml
</VirtualHost>
				

↑ Back to the top


Resolution

To resolve this issue, the VirtualHost directive should be the ServerName or the IP address as listed in NameVirtualHost directive.

For example:
<VirtualHost www.2net2.net>
ServerName www.2net2.net
ServerAlias 2net2.net
ServerAdmin webmaster@2net2.net
DocumentRoot /usr/home/blangdon/2net2.net/public-html/ 
ErrorLog /var/log/httpd/errors/fp_errors
TransferLog /var/log/httpd/access/2net2.net
ScriptAlias /cgi/ /www/netsite-cgi/ 
ScriptAlias /cgi-bin/ /usr/home/blangdon/2net2.net/cgi-bin/ 
AddHandler server-parsed shtml
</VirtualHost>
				

↑ Back to the top


Keywords: KB264924, kbprb

↑ Back to the top

Article Info
Article ID : 264924
Revision : 1
Created on : 8/27/2002
Published on : 8/27/2002
Exists online : False
Views : 206