@darrion.kuhn
To completely disable caching in CakePHP, you can disable the caching through the configuration settings in the core.php file.
1 2 3 4 5 6 7 |
Cache::config('_cake_core_', array(
'engine' => 'File',
'prefix' => 'cake_core_',
'path' => CACHE . 'persistent' . DS,
'serialize' => true,
'duration' => '+1 days'
));
|
1 2 3 4 5 6 7 |
// Cache::config('_cake_core_', array(
// 'engine' => 'File',
// 'prefix' => 'cake_core_',
// 'path' => CACHE . 'persistent' . DS,
// 'serialize' => true,
// 'duration' => '+1 days'
// ));
|
By following these steps, you can effectively disable caching in CakePHP. Remember to keep a backup of your configuration files in case you need to revert to previous settings.