Difference between revisions of "Seon Web access installation and configuration"

From Seon
Jump to: navigation, search
(Large file support)
Line 1: Line 1:
 
== Directory configuration ==
 
== Directory configuration ==
The end user web interface needs some special settings in the web server environment. These are (taken from the Apache 2 configuration file, assuming Seon webaccess is installed in "<code>/var/www/webaccess</code>"):
 
 
<pre>
 
    <Directory "/var/www/webaccess">
 
        Options Indexes FollowSymlinks ExecCGI
 
        AllowOverride All
 
        Order allow,deny
 
        Allow from all
 
    </Directory>
 
</pre>
 
 
Also make sure that the CGI module is loaded in Apache:
 
 
LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
 
 
The CGI handler must be actived in the Apache main config, too:
 
AddHandler cgi-script .cgi
 
 
 
----
 
 
 
The user running the web server must be able to read, execute and write the following directories:
 
The user running the web server must be able to read, execute and write the following directories:
 
*[[Seon_Core_configuration#data_outgoing_directory|data outgoing directory]]
 
*[[Seon_Core_configuration#data_outgoing_directory|data outgoing directory]]
Line 30: Line 9:
  
 
Starting from Q3/2013, Seon Webaccess offers a HTML5 file upload mechanism which supports files bigger than 2GB. Please configure your PHP backend to a maximum file upload and POST size of at least 128MB (which is a maximum single slice size of the divided file).
 
Starting from Q3/2013, Seon Webaccess offers a HTML5 file upload mechanism which supports files bigger than 2GB. Please configure your PHP backend to a maximum file upload and POST size of at least 128MB (which is a maximum single slice size of the divided file).
 +
 +
== Direct job access ==
 +
Starting with Seon 2014-12-09, you can point a user to a specific job in Seon Webaccess. This is done by a URL "GET" parameter, namely:
 +
job
 +
A URL to Seon Webaccess, pointing to job 18877 could be:
 +
http://seon-server/webaccess/index.html?job=18877
 +
 +
If the logged in user is not allowed to view this job, nothing happens. If the user is allowed, the job will be the active tab in Seon Webaccess after successful login.

Revision as of 09:18, 9 December 2014

Directory configuration

The user running the web server must be able to read, execute and write the following directories:

Large file support

Uploading files bigger than 2GB is a matter of the used webserver (i.e. Apache). Most common distributions include an Apache binary which is compiled with LARGEFILE support (which enables the upload of such big files). Also, your Web browser must support this feature, so it's most common to use the latest version available.

Starting from Q3/2013, Seon Webaccess offers a HTML5 file upload mechanism which supports files bigger than 2GB. Please configure your PHP backend to a maximum file upload and POST size of at least 128MB (which is a maximum single slice size of the divided file).

Direct job access

Starting with Seon 2014-12-09, you can point a user to a specific job in Seon Webaccess. This is done by a URL "GET" parameter, namely:

job

A URL to Seon Webaccess, pointing to job 18877 could be:

http://seon-server/webaccess/index.html?job=18877

If the logged in user is not allowed to view this job, nothing happens. If the user is allowed, the job will be the active tab in Seon Webaccess after successful login.