-
Notifications
You must be signed in to change notification settings - Fork 0
Clone acExceptionNotifierPlugin from gitorious project
License
AUTOPLANNING/acexceptionnotifierplugin
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
# acExceptionNotifierPlugin (for symfony 1.3/1.4) #
Allows you to send by e-mails errors 500 (Exception type) that occur in production environments.
## Installation ##
* Install the plugin (via a package)
symfony plugin:install acExceptionNotifierPlugin
* Install the plugin (via a git clone)
git clone git://gitorious.org/acexceptionnotifierplugin/acexceptionnotifierplugin.git acExceptionNotifierPlugin
* Activate the plugin in the `config/ProjectConfiguration.class.php`
[php]
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
$this->enablePlugins(array(
'sfDoctrinePlugin',
'acExceptionNotifierPlugin',
'...'
));
}
}
* Configure the plugin in the `config/app.yml` of the project (create it if it doesn't exist)
[yaml]
all:
...
ac_exception_notifier:
enabled: true
email:
from: "[email protected]"
from_name: "acExceptionNotifierPlugin"
to: ["[email protected]", "[email protected]"]
subject: "500 | Internal Server Error | Exception"
...
* Clear you cache
symfony ccAbout
Clone acExceptionNotifierPlugin from gitorious project
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published