can you please go to ow_log folder and check cron_error.log file, probably something is there related to the problem?
Used to be at: ow_system_plugins/base/init.php you colud adjust this via:
$action = ACTIVITY_BOL_Service::getInstance()->findLastOne('user-edit', $userId, $userId);
if ( $action !== null ) { $timeLimit = 60 * 30; // 30 minutes
if ( time() - (int) $action->getTimestamp() >= $timeLimit ) { $action = new ACTIVITY_BOL_Action(); } }
Used to be at: ow_system_plugins/base/init.php you colud adjust this via:
$action = ACTIVITY_BOL_Service::getInstance()->findLastOne('user-edit', $userId, $userId);
if ( $action !== null ) { $timeLimit = 60 * 30; // 30 minutes
if ( time() - (int) $action->getTimestamp() >= $timeLimit ) { $action = new ACTIVITY_BOL_Action(); } }
Used to be at: ow_system_plugins/base/init.php you colud adjust this via:
$action = ACTIVITY_BOL_Service::getInstance()->findLastOne('user-edit', $userId, $userId);
if ( $action !== null ) { $timeLimit = 60 * 30; // 30 minutes
if ( time() - (int) $action->getTimestamp() >= $timeLimit ) { $action = new ACTIVITY_BOL_Action(); } }
Update:
Seems my cron was set proper, as I mentioned earlier Arvixe had changed out the something, I think MySQL servers, was a matter of deleting the cron and re-entering the same path, all seems fine right now as 12 members were just auto logged out.
you need to login via SSH
put this command:
crond status
if everything is ok you should get
cron is running/cron is ok
if it does not show anything, probably you don't have enough permissions to do that. Contact support team of provider to grant you those permissions.
that means your server cron is working
after that put your cron configuration command
/usr/bin/php -q /home/krunch/public_html/ow_cron/run.php
if everything is ok you'll just get a cursor on the new line
if you get any message, that means something is wrong with the command or path
look at the tutorial: http://docs.oxwall.org/install:cron
how to run cron locally via ssh