olegstepura / error-bundle
Email notify about errors and exceptions happened in production mode
Requires
- php: >=5.3.2
- swiftmailer/swiftmailer: >=4.1.2
- symfony/symfony: >=2.0
- twig/twig: >=1.1
This package is not auto-updated.
Last update: 2025-03-23 05:26:31 UTC
README
Render an error if IP is in allowed list or send an email on each error raised or exception thrown in production mode of a deployed symfony application (you should know that something went wrong).
Usage
Install the bundle as usual. Enable the bundle in AppKernel for all modes:
app/AppKernel.php
<?php $bundles = array( // ... new Ost\ErrorBundle\OstErrorBundle($this), // ... );
Be sure to check that mail sending works with your current configuration. Now edit configuration files:
app/config/config.yml
ost_error: display: ips: ['10.10.10.2', '10.10.10.3']
Here we entered the IP's from which you are allowed to see the warning notifications on the site in production mode (in debug it's converted to exceptions by Symfony).
app/config/config_dev.yml
ost_error: mailer: false display: true
Disabled the mailer in dev mode since you are actually not going to recieve mails on errors while in dev mode.
app/config/config_prod.yml
ost_error: mailer: to: your.email@provider.com from: server.email@server.com report_not_found: false
Just enter your mail here. And tick the option if you want to recieve notifications
on NotFoundHttpException
.