I’m getting some warnings and notices all over my website. What’s wrong?
A troubleshooting fix for “I’m getting warnings and notices all over my website” — usually caused by WordPress’s WP_DEBUG mode being enabled in wp-config.php (which makes plugins emit PHP notices visibly), an outdated PHP version, or a conflicting plugin emitting warnings. The fix is almost always to disable debug-mode display in wp-config.php, or update PHP to a current version.
If this happens, you most likely have WP_DEBUG enabled in your wp-config.php file. However, although these warnings and notices are not looking nice at all and might seem frightening, they shouldn’t affect Tickera functionality in any way. Therefore, you can simply turn off debugging in your wp-config.php file by entering:
define('WP_DEBUG', false);If, however, you need debugging enabled for whatever reason but don’t want it to display these pesky warnings and notices, you can enter the following:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', false);
define('WP_DEBUG_DISPLAY', false);Note: there cannot be two WP_DEBUG definitions! So, if you edit your wp-config.php file and find a value define(‘WP_DEBUG’, true); you should change its value to false.
Now, if you these warnings and/or notices are somehow standing in the way of Tickera functionality and none of the above helps, please submit a support ticket to support.tickera.com
Related
Was this article helpful?
Yes — great. No or partially? Tell us what was missing — we read every message and use it to improve these docs.