Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
APP crashes on error level warning, but config set to continue
bperin
March 2013
My app keeps crashing on a warning but the config has it set to continue
'errors' => array(
// Which errors should we show, but continue execution? You can add the following:
// E_NOTICE, E_WARNING, E_DEPRECATED, E_STRICT to mimic PHP's default behaviour
// (which is to continue on non-fatal errors). We consider this bad practice.
'continue_on' => array('E_NOTICE','E_WARNING','E_DEPRECATED','E_STRICT'),
// How many errors should we show before we stop showing them? (prevents out-of-memory errors)
'throttle' => 10,
// Should notices from Error::notice() be shown?
'notices' => false,
),
This config file located in the right spot 'apppath/config/config.php'
Harro
March 2013
Accepted Answer
E_WARNING etc are PHP contants, not strings...
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
Harro
March 2013