An open API service indexing awesome lists of open source software.

https://github.com/rezaei121/yii2-errorhandler

yii2 error handler With the ability to search on google, stackoverflow and yiiframework and display results in order to find a quick solution.
https://github.com/rezaei121/yii2-errorhandler

yii2 yii2-error yii2-error-handler yii2-extension

Last synced: 8 months ago
JSON representation

yii2 error handler With the ability to search on google, stackoverflow and yiiframework and display results in order to find a quick solution.

Awesome Lists containing this project

README

          

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.

![screenshot](http://www.developit.ir/tmp/errorhandler.png)

Installation
------------

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

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)

```php
/**
* @inheritdoc
*/
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
'errorhandler' => [
'class' => 'developit\errorhandler\ErrorHandlerAction',
]
];
}
```

update errorHandler on config.php

```php
'errorHandler' => [
'class' => 'developit\errorhandler\ErrorHandler',
'errorAction' => 'site/error',
],
```

License
-------
yii2-errorhandler is an open source project created by Ehsan Rezaei(http://www.developit.ir) that is licensed under GPL-3.0.