summaryrefslogtreecommitdiff
path: root/doc/config.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/config.markdown')
-rw-r--r--doc/config.markdown13
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/config.markdown b/doc/config.markdown
index 0e3c3198..0325358d 100644
--- a/doc/config.markdown
+++ b/doc/config.markdown
@@ -15,14 +15,21 @@ define('LOG_DRIVER', 'file'); // Other drivers are: syslog, stdout, stderr or fi
The log driver must be defined if you enable the debug mode.
The debug mode logs all SQL queries and the time taken to generate pages.
-Plugins folder
---------------
+Plugins
+-------
+
+Plugin folder:
```php
-// Plugin directory
define('PLUGINS_DIR', 'data/plugins');
```
+Enable/disable plugin installation from the user interface:
+
+```php
+define('PLUGIN_INSTALLER', true); // Default is true
+```
+
Folder for uploaded files
-------------------------