|
177.
|
|
|
If you have a multi-tenanted Mahara instance but do not want people from the individual institutions to communicate on the site or share groups, you can turn on 'Isolated institutions'.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:153
|
|
178.
|
|
|
This can be beneficial when you set up a large site for several organisations and need to adhere to privacy regulations that don't allow people from one organisation to contact people from other organisations.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:155
|
|
179.
|
|
|
See the section :ref:`'Isolated institutions' <isolated_institutions>` for more information.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:158
|
|
180.
|
|
|
log_backtrace_levels: Log backtraces
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:167
|
|
181.
|
|
|
For example: ``$cfg->log_backtrace_levels = LOG_LEVEL_WARN | LOG_LEVEL_ENVIRON;`` (default)
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:169
|
|
182.
|
|
|
The log levels that will generate backtraces. Useful for development, but probably only warnings are useful on a live site.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:171
|
|
183.
|
|
|
log_backtrace_print_args: Log backtraces
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:180
|
|
184.
|
|
|
``$cfg->log_backtrace_print_args = null;`` (default)
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:182
|
|
185.
|
|
|
Print the values of function and method arguments when printing a backtrace. This can be useful for debugging, but it is a security risk because function parameters may include sensitive data such as passwords and private keys. Though arguments whose names suggest that they contain passwords, will still be blanked out even if this feature is enabled.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:184
|
|
186.
|
|
|
A ``null`` value here tells Mahara to hide argument values when ``$cfg->productionmode`` is enabled, and to show them otherwise. A ``true`` or ``false`` tells Mahara to always show or hide argument values in backtraces regardless of the value of ``$cfg->productionmode``.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../source/administration/config_php.rst:186
|