also i have propertyImage controller which has create action!
now how do I call create action of propertyImage controller in property controller create action?
I have code similar to this..
this code is in property/CreateAction.php
Yii::import('application.controllers.PropertyImageController');
Yii::import('application.controllers.propertyImage.CreateAction');
$propertyImageController=new PropertyImageController('propertyImage');
$createImage=new CreateAction($propertyImageController,'create');
$createImage->run();But this says "problem loading page"..
Regards..

Help














