- Update to 4.2
PR: 131510 Submitted by: "J.R. Oldroyd" <fbsd@opal.com> (maintainer)
This commit is contained in:
parent
0b85855ba1
commit
3d0c383f9a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=227887
4 changed files with 584 additions and 575 deletions
|
@ -6,8 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= phpGedView
|
||||
PORTVERSION= 4.1.4
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 4.2
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR= phpgedview
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (PhpGedView-basic-4.1.4.zip) = bdae5870c85ba6bf2968e49362258f72
|
||||
SHA256 (PhpGedView-basic-4.1.4.zip) = bac53c01aaf1132559ae43362a4a6496b77cea6ffee13c57ce91129e959d4e95
|
||||
SIZE (PhpGedView-basic-4.1.4.zip) = 4753913
|
||||
MD5 (PhpGedView-basic-4.2.zip) = c7dbf0c345722b89a4b199c4d1ed4423
|
||||
SHA256 (PhpGedView-basic-4.2.zip) = 24b11ceb843a34218412a37bfddf52f97b2e2288e806a7e4b9b6c6da64291db3
|
||||
SIZE (PhpGedView-basic-4.2.zip) = 4638056
|
||||
|
|
|
@ -1,24 +1,49 @@
|
|||
=======================================
|
||||
************************************************************************
|
||||
|
||||
For initial installation with Apache, you should:
|
||||
|
||||
1) Add the following to your Apache configuration, and
|
||||
restart the server:
|
||||
1. Add the following to your Apache configuration, and restart the
|
||||
server:
|
||||
|
||||
### Add the AcceptPathInfo directive only for Apache 2.0.30 or later.
|
||||
Alias /phpGedView %%WWWDIR%%/
|
||||
|
||||
Alias /phpGedView %%WWWDIR%%/
|
||||
AcceptPathInfo On
|
||||
### 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>
|
||||
<Directory %%WWWDIR%%>
|
||||
AllowOverride None
|
||||
Order Allow,Deny
|
||||
Allow from all
|
||||
</Directory>
|
||||
|
||||
2) Visit your phpGedView site with a browser (i.e.,
|
||||
http://your.server.com/phpGedView/)
|
||||
and you should be taken to the install script,
|
||||
which will lead you through setting up phpGedView,
|
||||
creating an admin account, etc.
|
||||
2. Visit your phpGedView site with a browser (i.e.,
|
||||
http://your.server.com/phpGedView/)
|
||||
and you should be taken to the install script, which will lead you
|
||||
through setting up phpGedView, creating an admin account, etc.
|
||||
|
||||
=======================================
|
||||
************************************************************************
|
||||
|
||||
If you are upgrading from phpGedView 4.1.x, you will need to manually
|
||||
take care of the following:
|
||||
|
||||
1. Back-up your three configuration files, copy in the new ones, and
|
||||
then merge your local changes into the new ones:
|
||||
|
||||
cd %%WWWDIR%%
|
||||
for x in config.php config_download.php config_gedcom.php; do
|
||||
mv $x $x-4.1.x
|
||||
cp $x-dist $x
|
||||
diff $x-4.1.x $x
|
||||
.. edit as appropriate ..
|
||||
done
|
||||
|
||||
2. When you first access phpGedView 4.2 you may see errors about
|
||||
missing SQL database field "i_sex" and it will warn you that your
|
||||
GEDCOM is not imported, even though it was before under 4.1.x. If
|
||||
this happens, you will need to re-import your GEDCOM data. Click on
|
||||
"Import" then follow the dialog "erase old data and replace with new".
|
||||
|
||||
Be sure to back up your old database and GEDCOM file first.
|
||||
|
||||
************************************************************************
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue