|
|
@@ -18,7 +18,7 @@
|
|
|
* @since CakePHP(tm) v 0.2.9
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
*/
|
|
|
-
|
|
|
+namespace App\Config;
|
|
|
use Cake\Cache\Cache;
|
|
|
use Cake\Core\Configure;
|
|
|
|
|
|
@@ -40,7 +40,7 @@ use Cake\Core\Configure;
|
|
|
/**
|
|
|
* Configure the Error handler used to handle errors for your application. By default
|
|
|
* ErrorHandler::handleError() is used. It will display errors using Debugger, when debug > 0
|
|
|
- * and log errors with Log when debug = 0.
|
|
|
+ * and log errors with Cake Log when debug = 0.
|
|
|
*
|
|
|
* Options:
|
|
|
*
|
|
|
@@ -114,8 +114,8 @@ use Cake\Core\Configure;
|
|
|
* Routing.prefixes = array('admin', 'manager');
|
|
|
*
|
|
|
* Enables:
|
|
|
- * `admin_index()` and `/admin/controller/index`
|
|
|
- * `manager_index()` and `/manager/controller/index`
|
|
|
+ * `App\Controller\Admin` and `/admin/controller/index`
|
|
|
+ * `App\Controller\Manager` and `/manager/controller/index`
|
|
|
*
|
|
|
*/
|
|
|
//Configure::write('Routing.prefixes', array('admin'));
|
|
|
@@ -240,70 +240,12 @@ use Cake\Core\Configure;
|
|
|
//date_default_timezone_set('UTC');
|
|
|
|
|
|
/**
|
|
|
- *
|
|
|
- * Cache Engine Configuration
|
|
|
- * Default settings provided below
|
|
|
- *
|
|
|
- * File storage engine.
|
|
|
- *
|
|
|
- * Cache::config('default', array(
|
|
|
- * 'engine' => 'File', //[required]
|
|
|
- * 'duration' => 3600, //[optional]
|
|
|
- * 'probability' => 100, //[optional]
|
|
|
- * 'path' => CACHE, //[optional] use system tmp directory - remember to use absolute path
|
|
|
- * 'prefix' => 'cake_', //[optional] prefix every cache file with this string
|
|
|
- * 'lock' => false, //[optional] use file locking
|
|
|
- * 'serialize' => true, [optional]
|
|
|
- * ));
|
|
|
- *
|
|
|
- * APC (http://pecl.php.net/package/APC)
|
|
|
- *
|
|
|
- * Cache::config('default', array(
|
|
|
- * 'engine' => 'Apc', //[required]
|
|
|
- * 'duration' => 3600, //[optional]
|
|
|
- * 'probability' => 100, //[optional]
|
|
|
- * 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
|
|
|
- * ));
|
|
|
- *
|
|
|
- * Xcache (http://xcache.lighttpd.net/)
|
|
|
- *
|
|
|
- * Cache::config('default', array(
|
|
|
- * 'engine' => 'Xcache', //[required]
|
|
|
- * 'duration' => 3600, //[optional]
|
|
|
- * 'probability' => 100, //[optional]
|
|
|
- * 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
|
|
|
- * 'user' => 'user', //user from xcache.admin.user settings
|
|
|
- * 'password' => 'password', //plaintext password (xcache.admin.pass)
|
|
|
- * ));
|
|
|
- *
|
|
|
- * Memcache (http://www.danga.com/memcached/)
|
|
|
- *
|
|
|
- * Cache::config('default', array(
|
|
|
- * 'engine' => 'Memcache', //[required]
|
|
|
- * 'duration' => 3600, //[optional]
|
|
|
- * 'probability' => 100, //[optional]
|
|
|
- * 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
|
|
|
- * 'servers' => array(
|
|
|
- * '127.0.0.1:11211' // localhost, default port 11211
|
|
|
- * ), //[optional]
|
|
|
- * 'persistent' => true, // [optional] set this to false for non-persistent connections
|
|
|
- * 'compress' => false, // [optional] compress data in Memcache (slower, but uses less memory)
|
|
|
- * ));
|
|
|
- *
|
|
|
- * Wincache (http://php.net/wincache)
|
|
|
- *
|
|
|
- * Cache::config('default', array(
|
|
|
- * 'engine' => 'Wincache', //[required]
|
|
|
- * 'duration' => 3600, //[optional]
|
|
|
- * 'probability' => 100, //[optional]
|
|
|
- * 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
|
|
|
- * ));
|
|
|
- */
|
|
|
-
|
|
|
-/**
|
|
|
* Pick the caching engine to use. If APC is enabled use it.
|
|
|
* If running via cli - apc is disabled by default. ensure it's available and enabled in this case
|
|
|
*
|
|
|
+ * Note: 'default' and other application caches should be configured in app/Config/bootstrap.php.
|
|
|
+ * Please check the comments in boostrap.php for more info on the cache engines available
|
|
|
+ * and their setttings.
|
|
|
*/
|
|
|
$engine = 'File';
|
|
|
if (extension_loaded('apc') && function_exists('apc_dec') && (php_sapi_name() !== 'cli' || ini_get('apc.enable_cli'))) {
|