File Access Rights

In most cases the webserver is only allowed to read the files on the hard disc. Therefore you have to assign write permossion for some directories. The write permission setup varies depending on the server:

Please grant the web server (i.e. the operating system user with whose rights the web server acts) write permissions for the following directories:

Some directories must be accessed by the web server, but web server users (Internet surfers) must not be granted access. This must be ensured by a corresponding configuration of the web server.

The installation package contains some files named .htaccess – these files regulate, among other things, the access rights on a default configured Apache web server. Test the correct function by calling the URLs http://www.domain.tld/sosci/inc/-reach.php, http://www.domain.tld/sosci/lib/-reach.php and http://www.domain.tld/sosci/system/-reach.php'.

<Directory /var/www/sosci/inc/>
  Order allow,deny
  deny from all
</Directory>
<Directory /var/www/sosci/lib/>
  Order allow,deny
  deny from all
</Directory>
<Directory /var/www/sosci/system/>
  Order allow,deny
  deny from all
</Directory>