Difference between revisions of "Seon Core web interface"
From Seon
Line 40: | Line 40: | ||
*Script logs doesn't support restarting events any more. | *Script logs doesn't support restarting events any more. | ||
*Send queue doesn't contain any editing functionality. Creating new entries is disabled. Deleting is disabled. Mass-actions are disabled. Aborting active transfers is disabled. Viewing the progress is enabled. | *Send queue doesn't contain any editing functionality. Creating new entries is disabled. Deleting is disabled. Mass-actions are disabled. Aborting active transfers is disabled. Viewing the progress is enabled. | ||
+ | *Receive queue has no delete- and abort-functionality. Link to edit partner parameters removed. |
Revision as of 11:30, 2 May 2007
Configuration
The Seon Core administrative web interface is configured via the file
database.inc.php
where the first lines are intersting only:
<?php // Since 21.10.2006, you have two options to configure your web interface: // - by pointing to an Seon configuration file (like "/etc/seon.conf") // - by typing in the database connection values directly // The type of used configuration is defined in the variable "config_type" using either "file" or "direct". // Using the "file" method only works if the web interface is located at the same host as Seon is running! $config_type="file"; // $config_type="direct"; $config_file="/etc/seon.conf"; // confguration part for direct configuration: just uncomment the following 5 lines and change values as needed // $mysql_host = "localhost:3306:/tmp/mysql.sock"; // $mysql_user = "seon"; // $mysql_password = "seon"; // $DBName = "seon"; // $tableprefix="seon_"; // enable this flag if a user-sight of this web interface is wanted $userview=true;
enabling user view
By setting the variable "$userview
" to "true
", the following components change:
- the header of the web interface disables interacting with the daemons (starting, stopping, dumping logs etc.)
- Configuration is viewable, but not changeable
- CAPI configuration is viewable, but not changeable. Scanning new devices is disabled.
- OFTP2 cipher suites and their configurations (including variable definitions) are disabled completely.
- Tools (database backup, license update & overview, automatic certificate generation) are disabled completely.
- Partner overview only contains basic OFTP parameters and no functionality to create, edit and/or delete entries. Seon Enterprise functionality is disabled. Links to statistics for partners are enabled.
- Send log doesn't contain links to edit partner parameters any more.
- Receive log doesn't contain links to edit partner parameters any more.
- xERP log doesn't contain links to edit partner parameters any more.
- Script logs doesn't support restarting events any more.
- Send queue doesn't contain any editing functionality. Creating new entries is disabled. Deleting is disabled. Mass-actions are disabled. Aborting active transfers is disabled. Viewing the progress is enabled.
- Receive queue has no delete- and abort-functionality. Link to edit partner parameters removed.