Welcome Guest, Not a member yet? Register   Sign In
Why query cache do not work?
#1

(This post was last modified: 09-12-2015, 05:48 AM by StratoKyke.)

"Configured database connection has cache enabled. Aborting."
This is my problem.

I use this guide http://www.codeigniter.com/user_guide/da...ching.html for set the query cache and this is my database.php

Code:
$active_group = 'default';
$query_builder = TRUE;

$db['default'] = array(
    'dsn'    => '',
    'hostname' => 'localhost',
    'username' => '',
    'password' => '',
    'database' => '',
    'port' => '3306',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => FALSE,
    'cache_on' => TRUE,
    'cachedir' => 'application/cache/site',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => TRUE,
    'compress' => TRUE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => FALSE
);

The cache/site is writable...
I would not know what might depend.


Thanks for your reply Smile
Reply


Messages In This Thread
Why query cache do not work? - by StratoKyke - 09-12-2015, 05:47 AM
RE: Why query cache do not work? - by StratoKyke - 09-13-2015, 10:19 AM
RE: Why query cache do not work? - by InsiteFX - 09-13-2015, 02:11 PM
RE: Why query cache do not work? - by StratoKyke - 09-14-2015, 10:28 AM
RE: Why query cache do not work? - by mwhitney - 09-14-2015, 09:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB