blob: b9e799d6bf7027642a4bc6667c316248c98c3753 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
************************************************************************
Check your httpd.conf, if you have included a ResourceConfig and
AccessConfig. If you do not have these files, you'll have to add
these lines to make frontpage extensions working properly:
ResourceConfig /dev/null
AccessConfig /dev/null
You'll also need to change AllowOverride under
<Directory "/usr/local/www/data"> ( or the place where you
moved your webservers ) from None to at least:
AllowOverride AuthConfig Limit Indexes Options
You can turn off/on the extensions and the frontpage administration
per site in httpd.conf and per virtual server. FrontPageAdminDisable
is the default if no option is given.
FrontPageEnable # Enable Frontpage Extensions
FrontPageDisable # Disable Frontpage Extensions
FrontPageAdminEnable # Enable Frontpage Extensions fpadmcgi.exe
FrontPageAdminDisable # Disable Frontpage Extensions fpadmcgi.exe
After you have made these changes, you'll have to execute:
%%PREFIX%%/frontpage/version5.0/fp_install.sh
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
************************************************************************
|