Hi.
Ok. Upon installation of Oxwall, I had to go to my net2ftp and open "/ow_includes/config.php" in order to turn on my debug mode. After that, I refreshed the page and it showed the "Please confirm your email address." page and I hit send. When, I hit send, it took me to the following page that you see in the image.
Btw, every time, I upload the site, I end up going though this. Would your programmers PLEASE fix the errors to where this won't happen, anymore? Thanks.
Now, at first, I tried:
[code]
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', true);
}
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', true);
}
[/code]
but it seems to not work. So, I tried:
[code]
if ( defined('OW_CRON') )
{
define('OW_DEBUG_MODE', false);
}
else
{
/**
* Make changes in this block if you want to enable DEV mode and DEBUG mode
*/
define('OW_DEBUG_MODE', true);
}
[/code]
and it seems to have given me something.
After, I read "Make changes in this block if you want to enable DEV mode and DEBUG mode," I decided to change the first one back to "false" and keep the second on "true." Is this right? If so, then, why isn't it originally coded that way in the fist place?
But what is the true way that the debug mode needs to be in order to keep it from erroring out? Thanks.