Hey everyone i'm creating a website and im usign cache_lite output for caching.
This is what my code is like.
$options = array(
'cacheDir' => 'cacheFiles/',
'writeControl' => 'true',
'readControl' => 'true',
'readControlType' => 'md5',
'pearErrorMode' => CACHE_LITE_ERROR_DIE
);
$cache = new Cache_Lite_Output($options);
In my files I do
$cache->setLifeTime(3600)}
if(!$cache->start('home','user/NameOfUser')){
//DO DB fetching
$cache->end();
}
My problem is im trying to setup groups. From what I read if I setup a group string it should create a directory of the group but as of right now it is just creating the file of the page and not the directory and the files with in there.
Any ideas?