e6de11188a
application. webtrees works from standard GEDCOM files, and is therefore compatible with every major desktop application. webtrees aims to to be efficient and effective by using the right combination of third-party tools, design techniques and open standards. WWW: http://webtrees.net/ PR: ports/153160 Submitted by: "J.R. Oldroyd" <fbsd@opal.com>
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
*************************************************************************
|
|
|
|
The following configuration will need to be done prior to using
|
|
webtrees for the first time:
|
|
|
|
1. For installation on the apache web server, add the following to your
|
|
apache site configuration, and restart the web server:
|
|
|
|
Alias /webtrees %%WWWDIR%%/
|
|
|
|
### Add the AcceptPathInfo directive only for Apache 2.0.30
|
|
### or later.
|
|
AcceptPathInfo On
|
|
|
|
<Directory %%WWWDIR%%>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
2. Webtrees uses a MySQL database. Configure a MySQL webtrees user
|
|
and database using commands such as (substitute PASSWD for something
|
|
of your own choosing):
|
|
|
|
mysql> create user webtrees@localhost identified by PASSWD;
|
|
mysql> create database webtrees;
|
|
mysql> grant all on webtrees.* to webtrees@localhost;
|
|
|
|
3. Configure webtrees by browsing to the webtrees URL:
|
|
http://your.server.com/webtrees/
|
|
and you should be taken to the setup wizard, which will lead you
|
|
through setting up webtrees: asking for the database server, database
|
|
user and database name, and then assist you in creating a webtrees
|
|
admin account, etc.
|
|
|
|
*************************************************************************
|