- Go to /ow_includes in your Skadate installation path.
- Open config.php in a code editor.
Change value of OW_DEBUG_MODE to true in the else block.
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', true);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
Notice that the OW_DEBUG_MODE constant value was changed to true in the else block;