XAMPP turn off Strict Standards errors - php

I am trying to disable Strict Standards from showing up on my screen.
I took a look at my php.ini files and see these lines:
; error_reporting
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
What do these lines mean and how do I disable the Strict Standards error from showing up?
I also see this line
error_reporting = E_ALL | E_STRICT

I'd change this line
error_reporting = E_ALL | E_STRICT
to the production Production Value
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
You can also change the display_errors settings which will allow you to log errors, but not display them
display_errors = Off

Related

PHP 8 error_reporting no warning

Since php 8 I'm having an issue with handling what logs should save to logs.
By setting the E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED value on php 7 as error_reporting, the warnings are excluded from the log.
By setting the same value in a domain with PHP 8 the warnings are still saved inside the log file, even by changing the value of error_reporting in the php.ini file.
In PHP 8 i have try without success:
E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
E_ALL & ~E_WARNING & ~E_NOTICE & ~E_CORE_WARNING & ~E_COMPILE_WARNING & ~E_USER_WARNING & ~E_USER_NOTICE & ~E_STRICT & ~E_DEPRECATED & ~E_USER_DEPRECATED
I tried restarting all the services but the warnings keep getting saved in the logs for the php8, does anyone have any solution?

PHP Error Reporting Production vs Development

What is best practice when setting error reporting on development and production applications? At the moment I have the following:
// development
error_reporting(E_ALL);
// production
ini_set('display_errors', 0);
ini_set('log_errors', 1);
error_reporting(E_ERROR | E_WARNING | E_PARSE);
Quoting the php-production.ini that should have come bundled with your PHP:
; PHP comes packaged with two INI files. One that is recommended to be used
; in production environments and one that is recommended to be used in
; development environments.
; php.ini-production contains settings which hold security, performance and
; best practices at its core. But please be aware, these settings may break
; compatibility with older or less security conscience applications. We
; recommending using the production ini in production and testing environments.
and further
; display_errors
; Default Value: On
; Development Value: On
; Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
; html_errors
; Default Value: On
; Development Value: On
; Production value: On
; log_errors
; Default Value: Off
; Development Value: On
; Production Value: On
Since you asked for best practise, I suggest you go with that.
For the best error logging experience, set error_reporting to -1 (absolutely everything), turn display_errors off, and set a custom error_log.
Then in the terminal, type tail -f /path/to/error_log. Your notices, warnings and errors will now scroll past in real time, without distorting your web page's display.
It's always worth logging everything. In any environment.

Can't get php errors to show when `error_reporting` set to `E_ALL`

I have WAMP with php 5.4.12 and I want to report errors.
My php.ini contains the following:
; Common Values:
; E_ALL & ~E_NOTICE (Show all errors, except for notices and coding standards warnings.)
; E_ALL & ~E_NOTICE | E_STRICT (Show all errors, except for notices)
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
; E_ALL | E_STRICT (Show all errors, warnings and notices including coding standards.)
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
; http://php.net/error-reporting
error_reporting = E_ALL
but no errors are showing.
What value should error_reporting take and how can I retrieve the reported errors?
I guess display_errors is turned off in your php.ini. Try the following instead (in the php file you are working on).
ini_set('display_errors' , 'On');
error_reporting(E_ALL);
For setting the flag on from php.ini, locate where display_errors is and change the value to On. Post your full php.ini if this does not work.
Can you check whether any error reporting flag in the php script(which will overwrite the php ini flags) in which you are trying to run and also in the .htaccess file. These are the two options which overwrites the php .ini flags.

PHP 5.5 shows internal server instead of displaying errors

I have updated my PHP version 5.3 to 5.5 and currently it starts to display internal server error instead of showing errors.
My php.ini settings configurations are as below:
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
I have already trial-and-error'ed various options available at stack overflow:
error_reporting = E_ALL
error_reporting = E_NOTICE
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
Try to set display_errors to On in your php.ini. See http://www.php.net/manual/en/errorfunc.configuration.php#ini.display-errors.
With reference http://www.php.net/manual/en/errorfunc.configuration.php and fnc, I have used in two ways as given below, both of them work fine at my end.
Option 1: Add the following line at the end of php.ini file or change value if it is existed as:
display_errors = On
Option 2: Change settings run time, add below line at the top of PHP script file.
<?php
if (!ini_get('display_errors')) {
ini_set('display_errors', '1');
}
?>

Include creating HTTP 500

So, I am just about ready to kill a kitten. This is driving me up the wall.
I have a php file I need to include, call it functions.php I have tried the following to include it:-
include './includes/functions.php';
When I did this, I discovered that I get a White Screen of Death. So I went onto more creative solutions;
echo ((include $_SERVER['DOCUMENT_ROOT']. "/includes/functions.php") == 'OK') ? 'GOOD IMPORT' : 'BAD IMPORT';
This was purely to see a visual response to the import. But to no avail, still the White Screen of Emptiness.
The file does exist.
Please, any help is greatly appreciated.
Seems like /includes/functions.php has a syntax error, To stop the "White screen of Death" edit your php.ini
; display_errors
; Default Value: On
; Development Value: On
; Production Value: Off
; display_startup_errors
; Default Value: Off
; Development Value: On
; Production Value: Off
; error_reporting
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
; Development Value: E_ALL
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
are values you should probably use. Thats from a stock php.ini file

Categories