************************************************************************ 1.) You'll need to change the AllowOverride directive in %%PREFIX%%/etc/apache2/httpd.conf under the default web from None to at least "AuthConfig Limit Indexes Options". : AllowOverride AuthConfig Limit Indexes Options : Don't use "AllowOverride All" if you have a server environment with customers, since this can be a security risk, as they could modify the .htaccess files themselves. You'll also need to change the AllowOverride Directive on all virtual hosts that you are going to enable with Frontpage Extentions. 2.) You can turn the extensions and the frontpage administration on/off per site in httpd.conf and per virtual server. FrontPage On/Off # Allows/Disallows Client to publish with FrontPage Extensions FrontPageAdmin On/Off # Allows/Disallows Administration of web site with FrontPage Extensions By default FrontPage Extentions and Administration are enabled. If the module has been compiled with WITH_DISABLED, then you need to add one of the above directives. If the module has been compiled with WITH_MODFP_COMPAT, then the following directives from the Improved Mod_Frontpage are available: FrontPageEnable # Same as 'FrontPage On' FrontPageDisable # Same as 'FrontPage Off' FrontPageAdminEnable # Same as 'FrontPageAdmin On' FrontPageAdminDisable # Same as 'FrontPageAdmin Off' 3.) If this is a fresh Apache install, you should remove the symbolic link to the %%PREFIX%%/www/data directory, and create a real directory. rm %%PREFIX%%/www/data mkdir %%PREFIX%%/www/data 4.) After you have made these changes, you'll need to execute: %%PREFIX%%/frontpage/version5.0/fp_install.sh to build the base apache/frontpage web site and to setup frontpage users and admins. You can also run this to add virtual hosts to the apache/frontpage system. NOTE: If you get this error: Error: An access setup description is required when creating the root web. check the document root for .htaccess files. Rename them, and then combine them with the .htaccess files created by the frontpage install. 5.) If you have installed the port in another PREFIX than "/usr/local" you have to create a symlink. Microsoft has hardcoded the local path in their binarys. If you do not use fp_install.sh, you have to create the link manually: ln -s %%PREFIX%%/frontpage /usr/local/frontpage NOTE: 1. When using owsadm.exe, you need to specify the server type in the command. owsadm.exe -t apache-2.0 ... 2. To create the Global Administration web site use: owsadm.exe -o setadminport -p -t apache-2.0 \ -s %%PREFIX%%/etc/apache2/httpd.conf -username \ -pw where PORT is not equal to any existing web servers port. 3. To remove the Global Administration web site use: owsadm -o deleteadminport -t apache-2.0 \ -s %%PREFIX%%/etc/apache2/httpd.conf ************************************************************************