I need to setup my PHP script at the top to disable error reporting for strict standards.
Can anybody help ?
|
Do you want to disable error reporting, or just prevent the user from seeing it? It’s usually a good idea to log errors, even on a production site.
They will be logged to your standard system log, or use the |
|||
|
|
|
For no errors.
or for just not strict
and if you ever want to display all errors again, use
|
|||||||||||
|
|
All above solutions are correct. But, when we are talking about a normal PHP application, they have to included in every page, that it requires. A way to solve this, is through
Or
Next, to set the error reporting
If you are wondering how the value |
|||||||
|
|
The default value of error_reporting flag is E_ALL & ~E_NOTICE if not set in php.ini. But in some installation (particularly installations targeting development environments) has E_ALL | E_STRICT set as value of this flag (this is the recommended value during development). In some cases, specially when you'll want to run some open source projects, that was developed prior to PHP 5.3 era and not yet updated with best practices defined by PHP 5.3, in your development environment, you'll probably run into getting some messages like you are getting. The best way to cope up on this situation, is to set only E_ALL as the value of error_reporting flag, either in php.ini or in code (probably in a front-controller like index.php in web-root as follows:
|
|||
|
|
|
Please check this:
You should use
|
|||||
|
|
Go to back end in joomla
|
|||||||||||
|
E_ALL & ~E_DEPRECATED & ~E_STRICTfor production. Notice that they suggest you disable strict standards. – Fake Code Monkey Rashid Sep 1 '11 at 17:51