Hi,
I found out that the table "sys_sessions" is
over-floated with data and its crash my website and stack mySQL .
I am actually going to re-install dolphin because of this problem.
Why is this table exists and why
it has so much data?
What did go wrong? (i did not touched nothing)
Always remember that the future comes one day at a time. |
sys_sessions table is pruned upon cron run, if it's over-floated then crontab isn't setup or isn't functioning properly. Rules → http://www.boonex.com/terms |
can i delete the table content manually? Always remember that the future comes one day at a time. |
i see error "#144 - Table './a3/sys_sessions' is marked as crashed and last (automatic?)" repair failed and cant do anything about it
boonex pls see this as a system bug and fix it
Always remember that the future comes one day at a time. |
can i delete the table content manually?
Yes, you can delete this table and create again, or just truncate it.
Rules → http://www.boonex.com/terms |
How can i check this actually working?
sys_sessions table is pruned upon cron run, if it's over-floated then crontab isn't setup or isn't functioning properly.
Ok, thanks.
can i delete the table content manually?
Yes, you can delete this table and create again, or just truncate it.
Always remember that the future comes one day at a time. |
i need to know if cron is working properly. how can i see it?
How can i check this actually working?
sys_sessions table is pruned upon cron run, if it's over-floated then crontab isn't setup or isn't functioning properly.
Always remember that the future comes one day at a time. |
It could be that the cron job is not properly set up. Most control panel have it so that you can get an email when the cron job runs. Are you seeing any error emails or such. If you are not getting any notices from the control panel and you think the cron job is correct, you could edit the cron.php file to send you an email or to write to a file. Geeks, making the world a better place |
thanks gg i crontab it and it's fine Always remember that the future comes one day at a time. |
If you are unsure if the cron.php is actually being executed, then you can have it send you an email. If you have your cron job set to run every minute, you will get one of these emails each minute until you edit the cron.php file and remove the code.
$to = "recipient@example.com"; $subject = "Cron Job"; $body = "cron.php was executed"; mail($to, $subject, $body);
Geeks, making the world a better place |