I have been using the curl http method for over 5 months with no issues then i notices just a couple days ago it wasnt fully completeing the cron job.
So i switch back to the original local run method
and it seems to be working now but it shows 2 errors for the config file displaying
PHP Notice: Constant OW_DEBUG_MODE already defined in /var/zpanel/hostdata/zadmin/public_html/buddylist_cf/ow_includes/config.php on line 39PHP Notice: Constant OW_DEV_MODE already defined in /var/zpanel/hostdata/zadmin/public_html/buddylist_cf/ow_includes/config.php on line 40
Is this normal?
I noticed ever since version 1.7.3 there is 2 places in the config now for dev mode and debug mode and im guessing this is what the error is talking about.
here is a snip from my config file
define('OW_USE_CLOUDFILES', false);
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', false);
define('OW_DEV_MODE', false);
define('OW_PROFILER_ENABLE', false);
}