|
48.
|
|
|
**$cfg->**: Stands for "configuration" and indicates that what follows is a configuration variable.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:26
|
|
49.
|
|
|
**variable =**: Here you see the variable that is to be set. Generally, it consists of one word, or words are joined together with underscores. The variable cannot contain any spaces.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:27
|
|
50.
|
|
|
**value;**: The value that the variable takes is displayed. The values can be different things, for example:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:28
|
|
51.
|
|
|
"true" or "false"
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:30
|
|
52.
|
|
|
text
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:31
|
|
53.
|
|
|
numbers
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:32
|
|
54.
|
|
|
file path
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:33
|
|
55.
|
|
|
If you want to change the default behaviour of a variable in your instance of Mahara, copy it from the ``config-defaults.php`` file into your ``config.php`` file so it won't get overwritten when you update the codebase. The ``config.php`` file is never changed by an update or upgrade of Mahara.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:36
|
|
56.
|
|
|
developermode: Enable or disable developer mode
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:71
|
|
57.
|
|
|
``$cfg->developermode = true;`` or ``$cfg->developermode = false;``
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:47
|