blob: 491338b3486d244a9711f2f715f136d0db76caa2 (
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
|
[
{ type: install
message: <<EOM
1. Configure sgwi
-----------------
Edit the %%WWWDIR%%/includes/config.inc.php file to reflect your
setup.
The default password for sgwi is admin/admin. It's specified in
the .htpasswd file in %%WWWDIR%%/ directory. Change it
with:
htpasswd %%WWWDIR%%/.htpasswd admin
Also make sure that the location of the .htpasswd file specified
in .htaccess file matches your path.
2. Configure Apache
-------------------
Add a line in your httpd.conf to allow the use of .htaccess file.
<Directory "%%WWWDIR%%/">
Options Indexes
AllowOverride AuthConfig
</Directory>
EOM
}
]
|