March 19, 2024
  • March 19, 2024

PHP

Debugging Errors in PHP and WordPress

by on February 20, 2020 0

Check your code on a php validator like PHP Code Checker   This code should be added at the top of a php file to show errors: error_reporting(E_ALL); error_reporting(-1); ini_set(‘error_reporting’, E_ALL);   If your on wordpress, make sure to enable debug mode in wp-config.php in the root of your site’s web directory: define( ‘WP_DEBUG’, true

Read More