EScriptBoost requires caching enabled
Andrewpk opened this issue · 1 comments
Andrewpk commented
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',
),
tonydspaniard commented
Yes you are right, I should've explained that on the wiki... Thank you for pointing at that.