CRON task
-
Hi guys,
I’ve scheduled a task using the cron style scheduler. Problem is, on task management under scheduled tasks, it isnt listed to cancel it.
Help?
Thanks
-
Anyone?
-
Seems to be a popular problem. This post suggest it’s a known bug to be fixed in FOG 0.33: [url]http://fogproject.org/forum/threads/scheduled-tasks-bug.58/[/url]
FWIW, you can delete it from the <b>scheduledTasks</b> table from MySQL.
-
Thanks, I tried to install PHPMyadmin but all attempts to log in failed. I set with no password, even tried to set a password and nothing seemed to work. I’ve used phpmyadmin many times, so its not that i dont know how to configure it. Just seems like the mysql database rejects it each time.
-
You can do it from the command line. For example, something like this would delete -ALL- scheduled tasks:
[CODE]# mysql -u root -Dfog
mysql> truncate table scheduledTasks;
mysql> quit[/CODE] -
You sir, are a gent! Sorted it now, cant believe I didnt think of that
-