I got this:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\APP\www\protected\extensions\less\lib\lessphp\lessc.inc.php on line 504
I think it might have to do with this:
'components'=>array(
'less'=>array(
'class'=>'ext.less.components.LessCompiler',
'forceCompile'=>true, // indicates whether to force compiling
//'compress'=>false, // indicates whether to compress compiled CSS
//'debug'=>false, // indicates whether to enable compiler debugging mode
'paths'=>array(
'less/style.less'=>'css/style.css',
),
),
- Does forceCompile mean the css files gets regenerated every time?
- Would this slow down my application?
- If I don't force compile, will it be faster?
- Is there anything else I can do to speed up my app?