Change default value of DATA_DIR in example file

This commit is contained in:
Frederic Guillot 2017-01-21 22:50:56 -05:00
parent c98bb82312
commit f360e1ed1f
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@
/* Rename this file to config.php if you want to change the values */
/*******************************************************************/
// Data folder (must be writeable by the web server user)
define('DATA_DIR', 'data');
// Data folder (must be writeable by the web server user and absolute)
define('DATA_DIR', __DIR__.DIRECTORY_SEPARATOR.'data');
// Enable/Disable debug
define('DEBUG', false);