Hi,
I regularly (not all the time) get error messages on my pages.
Can you help me with this ? Where do these messages come from?
Thanks
Hi,
I regularly (not all the time) get error messages on my pages.
Can you help me with this ? Where do these messages come from?
Thanks
Hello @NathanLbs,
Thanks for writing to us.
I checked your given site URL it seems that there is no error at the moment, I would recommend you please make sure you have not enabled the dubber mode, to disable the warning message you can add the below code into your wp-config.php. As this is just the warning you can just ignore it by adding the following code into your wp-config.php
file.
Check for this code in the wp-config.php file
define( 'WP_DEBUG', true);
Replace with this code
define( 'WP_DEBUG', false );
Please find the video that will help you to edit wp-config.php and add the above code: https://www.youtube.com/watch?v=3SDPTafEM8o
Hope it helps.
Thanks
Hi,
The wp-config.php file was already on debug false.
Hi @NathanLbs,
I have checked your website and didn’t find the issue you described. Can you please check and let us know if you are still seeing the same issue?
Thanks
The problem is that the message does not appear all the time, it only appears once in a while.
Hi @NathanLbs,
In that case, can you please specify the steps to replicate the issue? Without seeing the issue, it will be very difficult to recognize the reason behind the problem.
Thanks
I have no idea ! Sometimes it appaers, then I reload the page and the message is gone.
Hello @NathanLbs,
I checked your site again and I can replicate the issue at my end, it looks like a PHP Warning message, it is showing just because debugger mode is ON. Please have a look at this article to learn more about how to hide it
Add the below code in your wp-config.php
.
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
Hope that helps
Thanks
Hi,
The code is in place, I’ll let you know if the issue comes back.
Thanks
Hello @NathanLbs,
If you see the issue still persists please let us know. Please share the FTP details as well in the secure note in your post so that we can check it on our end.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.