Skip Navigation

[Resolved] ERRORS LOGS

This thread is resolved. Here is a description of the problem and solution.

Problem:

There are PHP warnings in Toolset.

Solution:

PHP warnings are not breaking errors. If you use PHP 8.1+ you'd better hide the warnings by adding the command below to wp-content.php file of your WordPress installation.

define( 'WP_DEBUG', false );

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 1 reply, has 2 voices.

Last updated by Christopher Amirian 1 year, 7 months ago.

Assisted by: Christopher Amirian.

Author
Posts
#2670439
Screenshot 2023-12-02 at 10.35.36 PM.png

I've a bunch of errors... can you help me to solve it?

#2670485

Christopher Amirian
Supporter

Languages: English (English )

Hi there,

None of the items you have mentioned in the screenshot are breaking errors.

Most of them are notices saying that if you update PHP to a higher version at a later date you might encounter issues.

If you are using PHP 8.1+ you might get these notices as we did not test the products with higher versions of PHP yet.

For now you can turn off those notices using the method below:

Would you please access your website files and edit the "wp-config.php" file on the root folder of your WordPress installation and add the code below into the file:

define( 'WP_DEBUG', false );

Please add the code above the line below:

/* That's all, stop editing! Happy blogging. */

That should do the trick

Thanks.