Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Config items can be asked via the Config→get_setting function.

...

Config File

...

These files are set during installation and can only be edited via the file not the UI post installation.


$cfg_tmpdir (String):: The Temp directory for the system

$cfg_rogo_data (String):: Since Rogo 6.1.0 Stores the location that user data directories will be stored in. The path should use the local file system separator (in the case of Windows it will need to be properly escaped).  The setting should have a trailing shash.

...

Code Block
languagephp
$cfg_db_charset = 'utf8utf8mb4';

$cfg_db_collation (String):: From Rogo 7.0.0 The db collation of the MySQL database.

Code Block
languagephp
$cfg_db_collation = 'utf8mb4_unicode_ci';

$cfg_db_student_user (String):: This is the db (MySQL) username that is switched to for the student user.

...

$cfg_tablesorter_date_time (String):: the timezone used by the jquery tablesorter library (should match above time zones) ROGO 6.0.

Code Block
languagephp
$cfg_tablesorter_date_time = 'uk';

$cfg_cron_user (String):: Cron user (used by the system to run automated scripts ROGO 6.0.

$cfg_cron_passwd (String):: Cron user passwordROGO 6.0.

$cfg_sms_api (String):: Configure the sms api.

...

$cfg_memcache_host( array)::   Since Rogo 6.1.0 Array of hosts for memcache servers (used by admin/healthcheck.php)

$cfg_memcache_port (String):: Since Rogo 6.1.0  Port of memcache servers (used by admin/healthcheck.php)

$cfg_readonly_host (Bool):: Since Rogo 6.2.0 Enables or disable file system read only mode

$file_config_override( Bool) Since Rogo 6.2.0  Enables or disable config settings in config.inc.php superseding the same config setting on the config table.

$logerrors (Bool):: Since Rogo 6.2.0  Enables or disable logging php errors to file

...