Errors on page

Ever since I made my website go live from a staging site I have been seeing these errors, mainly on the back end. But I see now they are on the front end too: https://fatcatpaperie.com/quote-requesdft/

How can I resolve these?

TIA
Rena

Hi Rena,

Thanks for writing in! What’s the PHP version that you’re running on your staging site ? Try using the same PHP version on your live site as well. We recommend to use PHP v5.6.x or later to avoid incompatibility issues. Also if you’re using the latest PHP version such as v7.2.x, try switching to earlier version such as v7.1.x.

In the meantime, you can also add the following code into your wp-config.php file by replacing the line you already have define('WP_DEBUG', false);.

define( 'WP_DEBUG', true ); 
if ( WP_DEBUG ) {
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
}

This will create an error log file under your wp-content directory, with the name of debug.log and also it will not display any errors for your visitors.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.