yii2 custom error handler ¶
yii2 error handler With the ability to search on google, stackoverflow and yiiframework and display results in order to find a quick solution.
Installation ¶
The preferred way to install this extension is through composer.
Either run
composer require developit/yii2-errorhandler
or add
"developit/yii2-errorhandler": "*"
to the require section of your composer.json
file.
Usage ¶
create a action(eg. errorhandler)
/**
* @inheritdoc
*/
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
'errorhandler' => [
'class' => 'developit\errorhandler\ErrorHandlerAction',
]
];
}
update errorHandler on config.php
'errorHandler' => [
'class' => 'developit\errorhandler\ErrorHandler',
'errorAction' => 'site/error',
],
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.