Difference between revisions of "CGI"

From GeneWeb
Jump to navigation Jump to search
(Same text as in french page for static_path superseded by GW_STATIC_PATH)
 
(35 intermediate revisions by 4 users not shown)
Line 15: Line 15:
 
(server):~#ls -al index.html
 
(server):~#ls -al index.html
 
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 index.html
 
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 index.html
(server):~#cat index.html
+
</pre>
<!DOCTYPE html">
+
The content of file {{c|index.html}} should be:
 +
<pre>
 +
<!DOCTYPE html>
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<body>
 
<body>
Line 22: Line 24:
 
</body>
 
</body>
 
</html>
 
</html>
(server):~#
 
 
</pre>
 
</pre>
 
Typing the following in your browser window:
 
Typing the following in your browser window:
Line 28: Line 29:
 
http://my_server_address/index.html
 
http://my_server_address/index.html
 
</pre>
 
</pre>
should display
+
should display:
 
  This is a minimal index.html page
 
  This is a minimal index.html page
  
Line 36: Line 37:
 
(server):~/cgi-bin#ls -al test-cgi.sh
 
(server):~/cgi-bin#ls -al test-cgi.sh
 
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 test-cgi.sh
 
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 test-cgi.sh
(server):~/cgi-bin#cat test-cgi.sh
+
</pre>
 +
The content of {{c|test-cgi.sh}} should be:
 +
<pre>
 
#!/bin/sh
 
#!/bin/sh
 
echo 'Content-type: text/html'
 
echo 'Content-type: text/html'
 
echo   
 
echo   
echo '<!DOCTYPE html">'
+
echo '<!DOCTYPE html>'
 
echo '<html xmlns="http://www.w3.org/1999/xhtml">'
 
echo '<html xmlns="http://www.w3.org/1999/xhtml">'
 
echo '<body>'
 
echo '<body>'
Line 46: Line 49:
 
echo '</body>'
 
echo '</body>'
 
echo '</html>'
 
echo '</html>'
(server):~/cgi-bin#
 
 
</pre>
 
</pre>
  
Line 53: Line 55:
 
  http://my_server_address/cgi-bin/test-cgi.sh
 
  http://my_server_address/cgi-bin/test-cgi.sh
 
</pre>
 
</pre>
should display
+
should display:
 
  This is a test for cgi commands
 
  This is a test for cgi commands
  
 
Note the ownership and read/write/execute characteristics if these files. See [[#Access rights and protection]] for a more detailed analysis.
 
Note the ownership and read/write/execute characteristics if these files. See [[#Access rights and protection]] for a more detailed analysis.
  
Service specific comments:
+
Depending on your hosting service, the location of these files in the system root (where you end up if you execute {{c|cd}}), web_root and cgi-bin folders may vary (see [[#Example folder organisations|Example folder organisations]]).
 
 
Depending on your hosting service, the location of the system root (where you end up if you execute {{c|cd}}), web root and cgi-bin folders may vary!
 
 
 
*OVH-Webm: (Web hosting) The server and web roots are at {{c|www}} and the cgi-bin folder is at {{c|www/cgi-bin}}.
 
*OVH-VPS: (Cloud service) The server root is at {{c|/root}}, the web root at {{c|/var/www}} and the cgi-bin forlder is at {{c|/usr/lib/cgi-bin}}
 
*1&1: The server and web roots are at {{c|~}} and the cgi-bin folder is at {{c|~/cgi-bin}}
 
(to be continued)
 
  
 
== The cgi-bin folder ==
 
== The cgi-bin folder ==
Line 74: Line 69:
 
*
 
*
 
** {{d}} cgi-bin: The folder containing CGI executables.
 
** {{d}} cgi-bin: The folder containing CGI executables.
*** {{d}} gwd-7.00.sh
+
*** {{d}} gwd.sh
 
*** {{branche finale}}{{d}} test-cgi.sh
 
*** {{branche finale}}{{d}} test-cgi.sh
 
{{arbre fin}}
 
{{arbre fin}}
  
The content of {{c|gwd-7.00.sh}} is:
+
The content of {{c|gwd.sh}} is:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
(server):~/cgi-bin > cat gwd-7.00
+
(server):~/cgi-bin > cat gwd.sh
 
#!/bin/sh
 
#!/bin/sh
BIN_DIR=~/gw-7.00-alpha-linux/gw
+
BIN_DIR=/root/geneweb-distribution/gw
BASE_DIR=~/bases
+
BASE_DIR=/root/geneweb-bases
 
OPTIONS="-robot_xcl 19,60 -allowed_tags ./tags.txt -hd ./"
 
OPTIONS="-robot_xcl 19,60 -allowed_tags ./tags.txt -hd ./"
$BIN_DIR/gwd -cgi  $OPTIONS  -bd $BASE_DIR  > ./gwd.log 2>&1
+
$BIN_DIR/gwd -cgi  $OPTIONS  -bd $BASE_DIR  2>./gwd.log
 
</syntaxhighlight>
 
</syntaxhighlight>
  
The {{c|gwd-7.00.sh}} file is a shell script that launches {{c|gwd}} with the appropriate parameters:
+
The {{c|gwd.sh}} file is a shell script that launches {{c|gwd}} with the appropriate parameters:
  
 
It contains the following definitions:
 
It contains the following definitions:
* DIR points to the {{c|gw}} folder holding the various executables files of GeneWeb (see [[#The gw folder|below]]).
+
* DIR points to the {{c|gw}} folder holding the various executables files of GeneWeb (see [[distribution|GeneWeb distribution]]).
* BASE_DIR points to the folder holding your genealogy bases (see [[#The bases folder|below]]).
+
* BASE_DIR points to the folder holding your genealogy bases (see [[bases|GeneWeb-Bases folder]]).
 +
: Details of these two pathnames may vary according to your hosting service and your folder organisation (see [[#Example folder organisations]]).
 
* OPTIONS holds the set of start parameters for '''gwd''', see [[gwd]] for details.
 
* OPTIONS holds the set of start parameters for '''gwd''', see [[gwd]] for details.
  
 
You may maintain in this folder several {{c|gwd-xx.sh}} files pointing to their respective {{c|DIR}} location holding different versions of GeneWeb, or starting with a different set of {{c|OPTIONS}} parameters.
 
You may maintain in this folder several {{c|gwd-xx.sh}} files pointing to their respective {{c|DIR}} location holding different versions of GeneWeb, or starting with a different set of {{c|OPTIONS}} parameters.
  
As discussed in  ???, the set of '''gwd''' start parameters can also be provided through a file named {{c|gwd.arg}} sitting in the {{c|gw}} forder. Note that in this file, the parameter and its value are on two separate lines.
+
The set of '''[[gwd]]''' start parameters can also be provided through a file named {{c|gwd.arg}} sitting in the {{c|gw}} forder. Note that in this file, the parameter and its value are on two separate lines.
  
 
<pre>
 
<pre>
(server):~ > cat ./gw-7.00-alpha-linux/gw/gwd.arg
+
(server):~ > cat /home/geneweb-distribution/gw/gwd.arg
 
-cgi
 
-cgi
 
-bd
 
-bd
Line 115: Line 111:
 
== The distribution and bases folders ==
 
== The distribution and bases folders ==
  
The remainder of the folder organisation follows the same structure as in the classical install, with one or more  GeneWeb distribution (detailed organisation of one '''[[distribution|distribution folder]]'''), and the GeneWeb-Bases folder containing one or several '''[[bases|genealogy bases]]'''
+
The remainder of the folder organisation follows the same structure as in the classical install, with one or more  '''[[distribution|GeneWeb distribution]]''', and the '''[[bases|GeneWeb-Bases folder]]''' containing one or several genealogy bases.
  
 
== Example folder organisations ==
 
== Example folder organisations ==
  
 
The following folders organisation have been tested on several hosting services:
 
The following folders organisation have been tested on several hosting services:
 
+
{|
=== OVH-Webm
+
|- style="vertical-align:top;"
 +
|
 +
=== OVH-Webm ===
  
 
{{arbre début}}
 
{{arbre début}}
 
* {{d}} www
 
* {{d}} www
** {{d}} cig-bin
+
** {{d}} cgi-bin
 
***{{f}} gwd.sh
 
***{{f}} gwd.sh
 
***{{branche finale}}{{f}}  test-cgi.sh
 
***{{branche finale}}{{f}}  test-cgi.sh
Line 133: Line 131:
 
** {{f}} index.html
 
** {{f}} index.html
 
{{arbre fin}}
 
{{arbre fin}}
 
+
||
=== OVH-VPS
+
=== OVH-VPS ===
  
 
{{arbre début}}
 
{{arbre début}}
Line 143: Line 141:
 
** {{d}} usr
 
** {{d}} usr
 
*** {{branche finale}}{{d}} lib
 
*** {{branche finale}}{{d}} lib
**** {{branche finale}}{{d}} cig-bin
+
**** {{branche finale}}{{d}} cgi-bin
 
***** {{f}} gwd.sh
 
***** {{f}} gwd.sh
 
***** {{branche finale}}{{f}}  test-cgi.sh
 
***** {{branche finale}}{{f}}  test-cgi.sh
 
** {{d}} var
 
** {{d}} var
*** {{branche finale}}{{d}} www
+
*** {{d}} www
**** {{f}} gw -> geneweb-distrib/gw
+
*** {{branche finale}}{{d}} html
 +
**** {{f}} gw -> /root/geneweb-distrib/gw
 
**** {{branche finale}}{{f}} index.html
 
**** {{branche finale}}{{f}} index.html
 
{{arbre fin}}
 
{{arbre fin}}
 +
Verified with Ubuntu on 01/02/2022
 +
||
  
 
=== 1&1 ===
 
=== 1&1 ===
Line 156: Line 157:
 
{{arbre début}}
 
{{arbre début}}
 
* {{d}} home
 
* {{d}} home
** {{d}} cig-bin
+
** {{d}} cgi-bin
 
***{{f}} gwd.sh
 
***{{f}} gwd.sh
 
***{{branche finale}}{{f}}  test-cgi.sh
 
***{{branche finale}}{{f}}  test-cgi.sh
Line 164: Line 165:
 
** {{f}} index.html
 
** {{f}} index.html
 
{{arbre fin}}
 
{{arbre fin}}
 +
||
 +
=== TuxFamily.org ===
 +
{{arbre début}}
 +
* {{d}} .../htdocs
 +
** {{d}} gw
 +
*** {{d}} consang
 +
*** {{d}} etc
 +
*** {{e}} gwc
 +
*** {{e}} gwd
 +
*** {{e}} gwu
 +
*** {{f}} .htaccess
 +
*** {{d}} images
 +
*** {{d}} lang
 +
*** {{f}} only.txt
 +
*** {{branche finale}}{{f}}  tags.txt
 +
** {{s}} gwd
 +
** {{f}} .htaccess
 +
{{arbre fin}}
 +
 +
|}
  
 
== Connecting style files ==
 
== Connecting style files ==
Line 172: Line 193:
  
 
<pre>
 
<pre>
root@vps265730:/var/www# ls -al
+
root@vps265730:/var/www/html# ls -al
 
total 660
 
total 660
 
drwxr-xr-x  7 root root  4096 Sep 25 18:40 .
 
drwxr-xr-x  7 root root  4096 Sep 25 18:40 .
Line 181: Line 202:
 
drwxr-xr-x  2 root root  4096 Apr 16  2016 public
 
drwxr-xr-x  2 root root  4096 Apr 16  2016 public
 
-rw-r--r--  1 root root    27 Apr 28  2016 robot.txt
 
-rw-r--r--  1 root root    27 Apr 28  2016 robot.txt
root@vps265730:/var/www#
+
root@vps265730:/var/www/html#
 
</pre>
 
</pre>
  
 
In order to instruct '''gwd''' to use this path, you must add in your {{c|.gwf}} configuration file the following variable:
 
In order to instruct '''gwd''' to use this path, you must add in your {{c|.gwf}} configuration file the following variable:
   static_path=../gw/etc
+
   static_path=/gw/etc/
Note the leading {{c|..}} due to the fact that the script launching '''gwd''' executes one level below the web_root of your server.
+
<!-- Note the leading {{c|..}} due to the fact that the script launching '''gwd''' executes one level below the web_root of your server.
  http://server_address/cgi-bin/gwd-7.00.sh
+
  <nowiki>http://server_address/cgi-bin/gwd-7.00.sh</nowiki> -->
 +
 
 +
The use of links assumes that your Apache server is properly configured, allowing sim links (FollowSymLinks).
 +
Experience shows that such configuration is touchy and sometimes defeated by some service provider restrictions. In such cases, copying the requested files to the appropriate location may be an alternative.
 +
 
 +
In the TuxFamily.org example above, links are not used. The value of {{c|static_path}} is empty.
 +
 
 +
=== Version 7.1 ===
 +
 
 +
In this new version, the {{c|static_path}} value is provided to gwd by the system environment variable {{c|GW_STATIC_PATH}}.
 +
If not set, the default value is {{c|../distribution/gw/etc}}, that lets assume a copy of the distribution folder (or a link if web server is able to manage it) to the root of web server.
 +
The presence of the {{c|..}} prefix is related to the place where the gwd script is started in {{c|cgi-bin}} folder.
  
 
== 1&1 hosting, GeneWeb 5 and 6 ==
 
== 1&1 hosting, GeneWeb 5 and 6 ==
Line 261: Line 293:
 
*allowed_tags: Usefull option if you use HTML tags not in default_good_tag_list.
 
*allowed_tags: Usefull option if you use HTML tags not in default_good_tag_list.
  
== Windows ==
+
=== Windows ===
 
Under Windows calling a CGI script using batch and cmd.exe can be tricky. An alternative is to directly call a copy of {{c|gwd.exe}} with its arguments file {{c|gwd.arg}} in Apache /cgi-bin/ directory file.
 
Under Windows calling a CGI script using batch and cmd.exe can be tricky. An alternative is to directly call a copy of {{c|gwd.exe}} with its arguments file {{c|gwd.arg}} in Apache /cgi-bin/ directory file.
  
Line 313: Line 345:
 
== Script to upload a copy of a base ==
 
== Script to upload a copy of a base ==
  
The files below are supplied to experienced users knowledgeable with shell scripts and the subtelties of Linix. "Use at your own risk" is the traditionnal caveat! Report for errors or improvements are indeed welcome.
+
The files below are supplied to experienced users knowledgeable with shell scripts and the subtelties of Linix (Sorry, not available for Windows). "Use at your own risk" is the traditionnal caveat! Report for errors or improvements are indeed welcome.
  
 
The script {{c|[[base-upld|base-upload.sh]]}} ([http://download.tuxfamily.org/geneweb/wiki/base-upload.sh download it]) takes a {{c|base_name}} as an argument, and optionally {{c|images}} or {{c|src}}. It uploads a fresh base on your server, or a fresh copy of the {{c|images/base}} or {{c|src/base}} folders. It performs the following steps:
 
The script {{c|[[base-upld|base-upload.sh]]}} ([http://download.tuxfamily.org/geneweb/wiki/base-upload.sh download it]) takes a {{c|base_name}} as an argument, and optionally {{c|images}} or {{c|src}}. It uploads a fresh base on your server, or a fresh copy of the {{c|images/base}} or {{c|src/base}} folders. It performs the following steps:
Line 319: Line 351:
 
* creates a fresh base.gw file from the base on your personal computer.
 
* creates a fresh base.gw file from the base on your personal computer.
 
* extracts a listing of the content of {{c|bases/images/base}} {{c|bases/src/base}} and {{c|bases/src/base/images}} in three {{c|ls-xxx.txt}} files.
 
* extracts a listing of the content of {{c|bases/images/base}} {{c|bases/src/base}} and {{c|bases/src/base/images}} in three {{c|ls-xxx.txt}} files.
* creates a {{c|remote-base.sh}} or {{c|remote-files.sh}} remote.sh file (see below).
+
* creates a {{c|remote.sh}} file (see {{c|[[remote-base|remote-base.sh]]}} or {{c|[[remote-files|remote-files.sh]]}}) depending on the second parameter.
* creates a tar file containing $BASE.gw, history remote.sh and the three {{c|ls-*.txt}} files above.
+
* creates a tar file containing {{c|base.gw}}, {{c|history}}, {{c|remote.sh}} and the three {{c|ls-*.txt}} files above.
 
* sends the tar file to the remote server.
 
* sends the tar file to the remote server.
 
* triggers on the remote server unfolding of the tar file and execution of the {{c|remote.sh}} script. Depending on the availability of {{c|/usr/bin/mail}} on your server, the result of this remote execution can be a mail containing the {{c|remote.log}} and three diff between images folders.
 
* triggers on the remote server unfolding of the tar file and execution of the {{c|remote.sh}} script. Depending on the availability of {{c|/usr/bin/mail}} on your server, the result of this remote execution can be a mail containing the {{c|remote.log}} and three diff between images folders.
Line 326: Line 358:
 
This procedure saves the previous folder of the base or its images and src folders with a "yyyy-mm-dd-hh:mm:ss" date tag. As time progresses, you may want to clean-up this accumulation of saves.
 
This procedure saves the previous folder of the base or its images and src folders with a "yyyy-mm-dd-hh:mm:ss" date tag. As time progresses, you may want to clean-up this accumulation of saves.
  
When uploading a base, the following {{c|[[remote-base|remote-base.sh]]}} shell script is executed on your remote server, and installs your base at the proper location (according to the overall set-up described here).
+
When uploading a base, the {{c|remote.sh}} shell script is executed on your remote server, and installs your base or its images at the proper location (according to the overall set-up described here).
  
 
If you launch the {{c|base-upload.sh}} script with the additionnal parameter {{c|images}} or {{c|src}} the script {{c|[[remote-files|remote-files.sh]]}} is executed on your remote server, and installs the {{c|images}} or {{c|src/images}} folders for your base at the proper location (according to the overall set-up described here).
 
If you launch the {{c|base-upload.sh}} script with the additionnal parameter {{c|images}} or {{c|src}} the script {{c|[[remote-files|remote-files.sh]]}} is executed on your remote server, and installs the {{c|images}} or {{c|src/images}} folders for your base at the proper location (according to the overall set-up described here).
Line 343: Line 375:
 
:* You also may want to verify that your "End-of-Lines" are correct for your server environment. Remember that there are three different such {{c|EOL}} encoding for Windows, Mac, and Linux!!
 
:* You also may want to verify that your "End-of-Lines" are correct for your server environment. Remember that there are three different such {{c|EOL}} encoding for Windows, Mac, and Linux!!
 
:* Examine the HTTP server log file on your server by typing:
 
:* Examine the HTTP server log file on your server by typing:
:: {{c|tail ~/logs/access.logs.current}}
+
:: {{c|tail /var/log/apache2/access.log}} (location in OVH-VPS configuration)
:: (your environment may store access logs somewhere else, but this is the most likely place)
+
:: your environment may store access logs somewhere else, but this is the most likely place. You may discover this place by typing {{c|find / -name access.log -print}}.
 
:: Examination of the log file may give you a hint as to the nature of your problem.
 
:: Examination of the log file may give you a hint as to the nature of your problem.
 
* Another typical issue is that of '''ownership''' of the various files associated with GeneWeb. In the case described here, ownership is {{c|user}} and group ownership is {{c|ftpusers}}. Depending on the specific method you have used to install GeneWeb, this may vary. Some discussions on the Yahoo! group forum about GeneWeb mentions ''geneweb'' for group ownership!
 
* Another typical issue is that of '''ownership''' of the various files associated with GeneWeb. In the case described here, ownership is {{c|user}} and group ownership is {{c|ftpusers}}. Depending on the specific method you have used to install GeneWeb, this may vary. Some discussions on the Yahoo! group forum about GeneWeb mentions ''geneweb'' for group ownership!
* You may also want to look at the '''gwd log file''' if your GeneWeb server works only partially (welcome page is ok, but other pages do not work properly). This log file is specified in the gwd launch command. In our example, it sits at {{c|$DIR/gwd.log}} where $DIR depends on the specific version of GeneWeb you are currently running (see details in [[#The cgi folder]] section above).
+
* You may also want to look at the '''gwd log file''' if your GeneWeb server works only partially (welcome page is ok, but other pages do not work properly). This log file is specified in the gwd launch command. In our example, it sits at {{c|$DIR/gwd.log}} where $DIR depends on the specific version of GeneWeb you are currently running (see details in [[#The cgi-bin folder]] section above).
 
* You may end up in a situation where GeneWeb works only partially, in particular it may miss some css style sheet or JavaScript files. One way of debugging this kind of problem consists in exploring the HTML source file produced by GeneWeb (your browser offers this capability addressed to "developers"). Is such source files, you will find reference to css and JavaScript files whose source should appear in your browser if you click on the link. In case of bad configuration, you will obtain an error messages such as "File not found" or "You do not have permission"…
 
* You may end up in a situation where GeneWeb works only partially, in particular it may miss some css style sheet or JavaScript files. One way of debugging this kind of problem consists in exploring the HTML source file produced by GeneWeb (your browser offers this capability addressed to "developers"). Is such source files, you will find reference to css and JavaScript files whose source should appear in your browser if you click on the link. In case of bad configuration, you will obtain an error messages such as "File not found" or "You do not have permission"…
 
: Remember that some of the files needed for proper display are fetched by the HTTP server rather than by GeneWeb.
 
: Remember that some of the files needed for proper display are fetched by the HTTP server rather than by GeneWeb.

Latest revision as of 09:37, 12 November 2023

150px-Geographylogo svg.png Language:   English • français

When daemon mode of GeneWeb is forbidden or cannot be activated, you must use CGI mode. It's mostly the case on a shared hosting account.

When running in CGI mode, GeneWeb sits behind a general purpose HTTP server such as Apache, and is launched by the server as a CGI command. As such, the first step in installing GeneWeb consists in verifying the operation of the HTTP server and of its CGI calling function.

The second step is to install GeneWeb itself in a folder organisation adapted to your environment. You must indeed Download the GeneWeb version corresponding to your machine architecture (processor, 32/64 bits, OS).

Verifying Web and CGI service

Web service is verified by displaying from a web browser the content of index.html:

(server):~#ls -al index.html
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 index.html

The content of file index.html should be:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
This is a minimal index.html page
</body>
</html>

Typing the following in your browser window:

http://my_server_address/index.html

should display:

This is a minimal index.html page

CGI service is verified by executing the file test-cgi.sh

(server):~#cd cgi-bin
(server):~/cgi-bin#ls -al test-cgi.sh
-rwxr-xr-x  1 username usergroup    290 Nov 22 22:29 test-cgi.sh

The content of test-cgi.sh should be:

#!/bin/sh
echo 'Content-type: text/html'
echo  
echo '<!DOCTYPE html>'
echo '<html xmlns="http://www.w3.org/1999/xhtml">'
echo '<body>'
echo 'This is a test for cgi commands'
echo '</body>'
echo '</html>'

Typing the following in your browser window:

 http://my_server_address/cgi-bin/test-cgi.sh

should display:

This is a test for cgi commands

Note the ownership and read/write/execute characteristics if these files. See #Access rights and protection for a more detailed analysis.

Depending on your hosting service, the location of these files in the system root (where you end up if you execute cd), web_root and cgi-bin folders may vary (see Example folder organisations).

The cgi-bin folder

The cgi-bin folder contains the cgi commands launching the gwd server software for each request from a browser client.

    • directory cgi-bin: The folder containing CGI executables.
      • directory gwd.sh
      • directory test-cgi.sh

The content of gwd.sh is:

(server):~/cgi-bin > cat gwd.sh
#!/bin/sh
BIN_DIR=/root/geneweb-distribution/gw
BASE_DIR=/root/geneweb-bases
OPTIONS="-robot_xcl 19,60 -allowed_tags ./tags.txt -hd ./"
$BIN_DIR/gwd -cgi  $OPTIONS   -bd $BASE_DIR   2>./gwd.log

The gwd.sh file is a shell script that launches gwd with the appropriate parameters:

It contains the following definitions:

Details of these two pathnames may vary according to your hosting service and your folder organisation (see #Example folder organisations).
  • OPTIONS holds the set of start parameters for gwd, see gwd for details.

You may maintain in this folder several gwd-xx.sh files pointing to their respective DIR location holding different versions of GeneWeb, or starting with a different set of OPTIONS parameters.

The set of gwd start parameters can also be provided through a file named gwd.arg sitting in the gw forder. Note that in this file, the parameter and its value are on two separate lines.

(server):~ > cat /home/geneweb-distribution/gw/gwd.arg
-cgi
-bd
~/bases
-hd
./
-robot_xcl 
19,60
-allowed_tags
./tags.txt
(server):~ >

The distribution and bases folders

The remainder of the folder organisation follows the same structure as in the classical install, with one or more GeneWeb distribution, and the GeneWeb-Bases folder containing one or several genealogy bases.

Example folder organisations

The following folders organisation have been tested on several hosting services:

OVH-Webm

  • directory www
    • directory cgi-bin
      • file gwd.sh
      • file test-cgi.sh
    • directory geneweb-distrib
    • directory geneweb-bases
    • file gw -> geneweb-distrib/gw
    • file index.html

OVH-VPS

  • directory /
    • directory root
      • directory geneweb-distrib
      • directory geneweb-bases
    • directory usr
      • directory lib
        • directory cgi-bin
          • file gwd.sh
          • file test-cgi.sh
    • directory var
      • directory www
      • directory html
        • file gw -> /root/geneweb-distrib/gw
        • file index.html

Verified with Ubuntu on 01/02/2022

1&1

  • directory home
    • directory cgi-bin
      • file gwd.sh
      • file test-cgi.sh
    • directory geneweb-distrib
    • directory geneweb-bases
    • file gw -> geneweb-distrib/gw
    • file index.html

TuxFamily.org

  • directory .../htdocs
    • directory gw
      • directory consang
      • directory etc
      • alt exe gwc
      • alt exe gwd
      • alt exe gwu
      • file .htaccess
      • directory images
      • directory lang
      • file only.txt
      • file tags.txt
    • script file gwd
    • file .htaccess

Connecting style files

In a hosted CGI server environment, the style (.css) and javascript (.js) files are sent to your browser by the HTTP server (Apache) rather that gwd. You therefore have to install at the web_root a link to the repository holding the style files.

The example below is taken from a OVH-VPS hosted server.

root@vps265730:/var/www/html# ls -al
total 660
drwxr-xr-x  7 root root   4096 Sep 25 18:40 .
drwxr-xr-x 12 root root   4096 Apr 16  2016 ..
drwxr-xr-x  4 root root   4096 Nov 23 15:41 gw -> /root/GW/GeneWeb-7.00/gw
-rw-r--r--  1 root root   3514 Jun 23 13:19 index.html
drwxr-xr-x  2 root root   4096 Apr 16  2016 private
drwxr-xr-x  2 root root   4096 Apr 16  2016 public
-rw-r--r--  1 root root     27 Apr 28  2016 robot.txt
root@vps265730:/var/www/html#

In order to instruct gwd to use this path, you must add in your .gwf configuration file the following variable:

 static_path=/gw/etc/

The use of links assumes that your Apache server is properly configured, allowing sim links (FollowSymLinks). Experience shows that such configuration is touchy and sometimes defeated by some service provider restrictions. In such cases, copying the requested files to the appropriate location may be an alternative.

In the TuxFamily.org example above, links are not used. The value of static_path is empty.

Version 7.1

In this new version, the static_path value is provided to gwd by the system environment variable GW_STATIC_PATH. If not set, the default value is ../distribution/gw/etc, that lets assume a copy of the distribution folder (or a link if web server is able to manage it) to the root of web server. The presence of the .. prefix is related to the place where the gwd script is started in cgi-bin folder.

1&1 hosting, GeneWeb 5 and 6

(Kept here for historical reasons)

The following applies to 1&1 hosting, and may differ on other hostings. On this web site, we can easily switch between two versions of GeneWeb: 5.00 and 6.00.

Directories and files

Files and directories on 1&1.
    • directory mybases: The bases directory, beside the CGI-root directory.
      • directory mybases.gwb
      • directory cnt
      • directory images
    • directory root: The CGI-root directory.
      • directory basesxg: An alternative bases directory.
      • directory css: A copy of the gw/css directory. This directory is used by the Apache server.
      • directory gw: The gw directory of the GeneWeb distribution.
      • directory gwenv: The gw directory of the Geneweb-5 distribution.
      • directory igw: The images directory for Geneweb-5.
      • directory images: A directory with copies of gw/images/gwback.jpg and gw/images/gwlogo_bas.png
      • directory pub: A directory where are readable copies of the CGI scripts (this website is a demo site).
      • file gw6.cgi: The CGI script which launches GenWeb-6.
      • file gw5.cgi: The CGI script which launches GenWeb-5.
      • file issue6.cgi: A test script which displays information about the environment of the server and checks size and md5sum for the gwd binary file.
      • file issue5.cgi: The same script, but for the GeneWeb-5 version

You need the “exec” permission on the files gw/gwd, gw/gwsetup, and files used by gwsetup (gw/gwc*, gw/gwu,gw/consang, gw/update_nldb). The gwd.arg file is empty.

The databases folder bases must be protected either by a .htaccess file, either by a location out of the HTTP server scope. It does not need to be accessible by the HTTP server.

Description of the CGI script

Main parameters:

PWD=$(pwd)
LNG="fr"
GENEWEBSHARE=$PWD/gw
GENEWEBDOC=$PWD/gw/doc
GENEWEBDB=$PWD/../bases
DAEMON=$GENEWEBSHARE/gwd
LOGFILE=$GENEWEBDB/gw.log
The CGI working directory.
The language for the user interface.
The programs folder.
The documentation folder (obsolete).
The databases folder. 
The program gwd itself.
Gwd log file, it helps to solve problems.

Note that although called DAEMON, gwd does not run in -daemon mode but in -cgi mode.

Be carefull when using a log file, its size can increase quickly, don’t forget to delete it from time to time.

OPTIONS="-blang -robot_xcl 40,70 -max_clients 15 -conn_tmout 120 -min_disp_req 30 -images_url http://myserver.net/gw/images"
# -allowed_tags $GENEWEBDB/tags.txt
cd $GENEWEBSHARE
$DAEMON -hd$GENEWEBSHARE -dd$GENEWEBDOC -bd$GENEWEBDB -lang$LNG -log$LOGFILE -cgi $OPTIONS  2>/dev/null

Misc. options:

  • robot_xcl: To protect your data from HTTrack or WebSite Extractor.
  • conn_tmout: For statistics on the bottom line.
  • images_url: Icons and images are not sent by GeneWeb, but by your HTTP server (not CGI).
  • allowed_tags: Usefull option if you use HTML tags not in default_good_tag_list.

Windows

Under Windows calling a CGI script using batch and cmd.exe can be tricky. An alternative is to directly call a copy of gwd.exe with its arguments file gwd.arg in Apache /cgi-bin/ directory file.

Gwd will work behind Apache calling http://localhost/cgi-bin/gwd.exe.

  • directory cgi-bin
    • file gwd.exe
    • file gwd.arg

Edit gwd.arg to point your local GeneWeb installation, for example if it is C:\Program Files (x86)\geneweb\:

-hd
C:\Program Files (x86)\geneweb\gw
-bd
C:\Program Files (x86)\geneweb\bases
-log
C:\Program Files (x86)\geneweb\geneweb.log
-images_dir
C:\Program Files (x86)\geneweb\gw\images
-cgi

Problems to solve: - Portrait (all images with m=IMH) are not shown or are corrupted (#103). - Minor problems in 7.00 with loading of new .css/.js files, specialy for templm (#356).

Images missing

-images_dir parameter create links to local image files like file:///c:\path\to\myimage.jpg that are not shown for security reason under some browser (like Chrome for ex.). An alternative to previous configuration is to switch to -images_url parameter so that gwd uses relatives paths for images and to create a virtual directory in your httpd server.

In gwd.arg, modify:

-images_url
/images

If you use Apache, edit httpd.conf to have those lines, then restart httpd.exe:

LoadModule access_compat_module modules/mod_access_compat.so
LoadModule alias_module modules/mod_alias.so

Alias /images " C:\Program Files (x86)\geneweb\gw\images"

<Directory " C:\Program Files (x86)\geneweb\gw\images">
  Options None
  AllowOverride All
  Order allow,deny
  Allow from all
</Directory>

Script to upload a copy of a base

The files below are supplied to experienced users knowledgeable with shell scripts and the subtelties of Linix (Sorry, not available for Windows). "Use at your own risk" is the traditionnal caveat! Report for errors or improvements are indeed welcome.

The script base-upload.sh (download it) takes a base_name as an argument, and optionally images or src. It uploads a fresh base on your server, or a fresh copy of the images/base or src/base folders. It performs the following steps:

  • creates a fresh base.gw file from the base on your personal computer.
  • extracts a listing of the content of bases/images/base bases/src/base and bases/src/base/images in three ls-xxx.txt files.
  • creates a remote.sh file (see remote-base.sh or remote-files.sh) depending on the second parameter.
  • creates a tar file containing base.gw, history, remote.sh and the three ls-*.txt files above.
  • sends the tar file to the remote server.
  • triggers on the remote server unfolding of the tar file and execution of the remote.sh script. Depending on the availability of /usr/bin/mail on your server, the result of this remote execution can be a mail containing the remote.log and three diff between images folders.

This procedure saves the previous folder of the base or its images and src folders with a "yyyy-mm-dd-hh:mm:ss" date tag. As time progresses, you may want to clean-up this accumulation of saves.

When uploading a base, the remote.sh shell script is executed on your remote server, and installs your base or its images at the proper location (according to the overall set-up described here).

If you launch the base-upload.sh script with the additionnal parameter images or src the script remote-files.sh is executed on your remote server, and installs the images or src/images folders for your base at the proper location (according to the overall set-up described here).

Depending on the size of your images folders, and on the number of new images requiring upload, you may prefer to upload images individually with your preferred ftp client rather than doing the bulk upload proposed here. Remember that the base upload script reports a form of comparison between the images folders on your personal computer and your server.

Debugging your remote server

Debugging your remote server may be tricky, but some systematic approach and several tools will help.

  • Verify first that your HTTP server works properly. This is achieved by typing your_server_name in the URL window of your browser which should return the content of index.html.
  • Verify that the cgi mechanism works. This is achieved by typing your_server_name/cgi-bin/test-cgi.sh as seen above (see #Folders and files).
If your server returns a "Internal server error", several hypothesis should be examined:
  • Your script test-cgi.sh does not work properly. Run it directly on a terminal window by typing ./test-cgi.sh (see #Folders and files).
  • Your server accepts only files with extension .cgi. Rename test-cgi.sh into test-cgi.cgi and try again.
  • The first two lines returned by your test-cgi.sh script are not exactly as shown (the second one should be a blank line, Note also that "Content-type text/html\n\n" did not work in my tests).
  • You also may want to verify that your "End-of-Lines" are correct for your server environment. Remember that there are three different such EOL encoding for Windows, Mac, and Linux!!
  • Examine the HTTP server log file on your server by typing:
tail /var/log/apache2/access.log (location in OVH-VPS configuration)
your environment may store access logs somewhere else, but this is the most likely place. You may discover this place by typing find / -name access.log -print.
Examination of the log file may give you a hint as to the nature of your problem.
  • Another typical issue is that of ownership of the various files associated with GeneWeb. In the case described here, ownership is user and group ownership is ftpusers. Depending on the specific method you have used to install GeneWeb, this may vary. Some discussions on the Yahoo! group forum about GeneWeb mentions geneweb for group ownership!
  • You may also want to look at the gwd log file if your GeneWeb server works only partially (welcome page is ok, but other pages do not work properly). This log file is specified in the gwd launch command. In our example, it sits at $DIR/gwd.log where $DIR depends on the specific version of GeneWeb you are currently running (see details in #The cgi-bin folder section above).
  • You may end up in a situation where GeneWeb works only partially, in particular it may miss some css style sheet or JavaScript files. One way of debugging this kind of problem consists in exploring the HTML source file produced by GeneWeb (your browser offers this capability addressed to "developers"). Is such source files, you will find reference to css and JavaScript files whose source should appear in your browser if you click on the link. In case of bad configuration, you will obtain an error messages such as "File not found" or "You do not have permission"…
Remember that some of the files needed for proper display are fetched by the HTTP server rather than by GeneWeb.

Access rights and protections

In CGI mode, gwd runs behind a standard HTTP server, typically Apache. As such, the owner of the gwd process is the owner of the HTTP server. For instance, with Apache, this owner is defined in the http.conf file and its default value is set to user: _www and group: —www. When running within a hosting environment, such as 1&1, you typically do not have access to this parameter. You must therefore organise the protection level of the various folders involved with GeneWeb appropriately:

  • read access is usually allowed by default
  • for wizards, gwd needs write access to bases/cnt/actlog, bases/cnt/robot (if you have activated the -robot_xcl parameter)
  • and when modifications are performed, gwd needs write access to bases/basename.lck, bases/basename.gwd/notes_link and to bases/basename.gwd/patches

Creating those files, and doing a sudo chown _www filename seems to be sufficient.

Access problems are reported in the HTTP error log file, unfortunately not always available in the case of shared hosting services!!

Access to various files through your hosted HTTP server is also controlled by your hosting service and through .htaccess files spread across your folders. Managing a coherent set of .htaccess files is not trivial and error prone!! The examples below apply to Apache version 2.4 only (earlier versions have different directives!!).

Options +FollowSymLinks should allow following symbolic links

Require all denied prevents access to this folder to all users. Require all granted allows access to this folder to all users.

AllowOverride AuthConfig
AuthType Basic
AuthName "Username/Password required"
AuthUserFile /Users/Name/SomeFolder/htfriends.auth
Require valid-user

should restrict access to this folder to users supplying a valid password as defined by the htfriends.auth file.

htpasswd /Users/Name/SomeFolder/htfriends.auth UserName will trigger the process to add a new user to the list.



GeneWeb Manual

Rembrandt Old Man Reading a Book.jpg

Use and manage genealogical databases

Technical annex