tonydspaniard/Yii-extensions

EScriptBoost requires caching enabled

Andrewpk opened this issue · 1 comments

Had to track down an error where caching needed to be enabled for EScriptBoost and EScriptBoostClient to work properly.

Any Yii caching mechanism works, it just needs some form of cache in the main.php config.

As soon as I enabled apc such as the following - everything worked:

'cache' => array(
    'class' => 'system.caching.CApcCache',
),

Yes you are right, I should've explained that on the wiki... Thank you for pointing at that.