Debug PHP Errors
/**
* Copy this code to config.php file
* This will disable notice and strict errors
*/
define('OSC_DEBUG', false) ;/**
* Copy this code to config.php file
* This will show all error notices and warnings on the site
*/
define('OSC_DEBUG', true) ;/**
* Copy this code to config.php file
* This will log all error notices and warnings to a file called debug.log in oc-content
*/
define('OSC_DEBUG', true) ;
define('OSC_DEBUG_LOG', true) ;Last updated
Was this helpful?