Fix undefined constant in config example file

This commit is contained in:
Frederic Guillot
2016-08-22 21:48:27 -04:00
parent 51fef80f7d
commit e2a9440c92
5 changed files with 33 additions and 2 deletions

View File

@@ -37,6 +37,17 @@ Folder for uploaded files
define('FILES_DIR', 'data/files');
```
Cache parameters
----------------
```php
// Available cache drivers are "file" and "memory"
define('CACHE_DRIVER', 'memory');
// Cache folder to use if cache driver is "file" (must be writeable by the web server user)
define('CACHE_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'cache');
```
Enable/disable url rewrite
--------------------------