Yiibooster: Memory Exhausted

Hi all, I’m just starting Yii and want to try YII Booster.

I’ve followed the installation step but I just couldn’t get it work.

Here is the error I get When I tried to use yii booster widget:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65488 bytes) in …\framework\base\CModule.php on line 533

Here is an example of my code :

Config main:




	'preload'=>array('log','bootstrap'),

	'modules'=>array(

                 ...

		'bootstrap' => array(

                    'class'=>'ext.yiibooster.components.Bootstrap'

                ),



Controller:




public function actionTest(){

		$this->widget(

			'bootstrap.widgets.TbHighCharts',

			array(

				'options' => array(

					'series' => array(

						'data'=>array(1, 2, 3, 4, 5, 1, 2, 1, 4, 3, 1, 5)

					)

				)

			)

		);

	}



I’ve tried made memory_limit to unlimited but get Out of Memory.

Tried booster filter, but still failed.

My code run fine without any issues before I tried to use Yiibooster.

Is there anything wrong with this configuration? Can someone help me?

  • I’ve stop tried getting yiibooster to work and switch to Yiistrap+Yiiwheels.