Difference between revisions of "OS4X Core web interface"
Jump to navigation
Jump to search
(New page: == Configuration == The OS4X Core administrative web interface is configured via the file database.inc.php where the first lines are intersting only: <pre> <?php // Since 21.10.2006, you ...) |
|||
Line 11: | Line 11: | ||
// Using the "file" method only works if the web interface is located at the same host as OS4X is running! | // Using the "file" method only works if the web interface is located at the same host as OS4X is running! | ||
− | $config_type=" | + | $config_type="file"; |
// $config_type="direct"; | // $config_type="direct"; | ||
− | $config_file=" | + | $config_file="/etc/os4x.conf"; |
// confguration part for direct configuration: just uncomment the following 5 lines and change values as needed | // confguration part for direct configuration: just uncomment the following 5 lines and change values as needed | ||
Line 24: | Line 24: | ||
// enable this flag if a user-sight of this web interface is wanted | // enable this flag if a user-sight of this web interface is wanted | ||
− | $userview= | + | $userview=true; |
</pre> | </pre> |
Revision as of 10:40, 2 May 2007
Configuration
The OS4X 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 OS4X configuration file (like "/etc/os4x.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 OS4X is running! $config_type="file"; // $config_type="direct"; $config_file="/etc/os4x.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 = "os4x"; // $mysql_password = "os4x"; // $DBName = "os4x"; // $tableprefix="os4x_"; // enable this flag if a user-sight of this web interface is wanted $userview=true;