php - Maximum function nesting level in Yii -
i know there duplicates question, tried of them, none of them worked. @ last commented out zend_extension in php.ini, browser keeps on processing endlessly.
what have i'm calling simple widget view
echo \sintret\chat\chatroom::widget([ 'url' => \yii\helpers\url::to(['/site/send-chat']), 'usermodel'=> \common\models\user::classname(), 'userfield' => 'avatarimage' ]);
in controller:
public function actionsendchat() { if (!empty($_post)) { echo \sintret\chat\chatroom::sendchat($_post); } }
here github link chatroom.php contains main widget, has 2 main functions init() , run(). sendchat calling in our controller.
any thoughts resolve error welcome.
Comments
Post a Comment