'); // Remember me define('REMEMBER_COOKIE_USERNAME', 'BLUDITREMEMBERUSERNAME'); define('REMEMBER_COOKIE_TOKEN', 'BLUDITREMEMBERTOKEN'); define('REMEMBER_COOKIE_EXPIRE_IN_DAYS', 30); // Filename define('FILENAME', 'index.txt'); // Database date format define('DB_DATE_FORMAT', 'Y-m-d H:i:s'); // Database date format define('BACKUP_DATE_FORMAT', 'Y-m-d-H-i-s'); // Sitemap date format define('SITEMAP_DATE_FORMAT', 'Y-m-d'); // Date format for Manage Content, Manage Users define('ADMIN_PANEL_DATE_FORMAT', 'D, j M Y, H:i'); // Date format for Dashboard schedule posts define('SCHEDULED_DATE_FORMAT', 'D, j M Y, H:i'); // Notifications date format define('NOTIFICATIONS_DATE_FORMAT', 'D, j M Y, H:i'); // Manage content date format define('MANAGE_CONTENT_DATE_FORMAT', 'D, j M Y, H:i'); // Amount of items to show on notification panel define('NOTIFICATIONS_AMOUNT', 10); // Token time to live for login via email. The offset is defined by http://php.net/manual/en/datetime.modify.php define('TOKEN_EMAIL_TTL', '+15 minutes'); // Charset, default UTF-8. define('CHARSET', 'UTF-8'); // Permissions for new directories define('DIR_PERMISSIONS', 0755); // Admin URI filter to access to the admin panel define('ADMIN_URI_FILTER', 'admin'); // Default language file, in this case is English define('DEFAULT_LANGUAGE_FILE', 'en.json'); // Session timeout server side, gc_maxlifetime // 3600 = 1hour define('SESSION_GC_MAXLIFETIME', 3600); // Session lifetime of the cookie in seconds which is sent to the browser // The value 0 means until the browser is closed define('SESSION_COOKIE_LIFE_TIME', 0); // Alert notification dissappear in X seconds $GLOBALS['ALERT_DISSAPEAR_IN'] = 3; // Seconds // Number of images to show in the media manager per page $GLOBALS['MEDIA_MANAGER_NUMBER_OF_FILES'] = 5; // Sort the image by date $GLOBALS['MEDIA_MANAGER_SORT_BY_DATE'] = true; // Thubmnails size $GLOBALS['THUMBNAILS_WIDTH'] = 400; $GLOBALS['THUMBNAILS_HEIGHT'] = 400; $GLOBALS['THUMBNAILS_QUALITY'] = 100;