Facbook Pixel


Enable debug errors in WordPress

Setting WP_DEBUG to true in your wp-config.php will enable the debug mode throughout WordPress. This will cause all PHP errors, warnings, and notices to be displayed.

It's highly recommended that WP_DEBUG and WP_DEBUG_LOG be set to true during development to catch errors that might not otherwise show when set to false. This is especially useful during the development of custom modules as the https://static.itegy.com/css/js for the current layout will be refreshed on each page load instead of cached as it is by default.

  1. Edit the wp-config.php for your website. (cPanel / Plesk / Web & Classic / Managed WordPress / VPS)
  2. Change
    define('WP_DEBUG', false);
    to
    define('WP_DEBUG', true);
  3. On the following line, type
    define('WP_DEBUG_LOG', true);
  4. Save your changes.
  5. Using an Internet browser, visit your site to trigger the debugging log.
  6. Using Page Builder in WordPress