The cron-task tag has no wiki summary.
2
votes
3answers
66 views
Quartz Scheduler for java- How to run job every 5 minutes
Friends,
I am using quartz scheduler for running a task every 5 minutes starting when application deployed & running continuously so i have written code as:
SchedulerFactory sf = new ...
2
votes
2answers
115 views
How to run a PHP script with cronjob? [closed]
I'm trying to run a PHP script, like writing something in a txt file. If I manually load the file it works, but not with a cron job. I have cPanel and I followed what I read in the help page, but ...
2
votes
2answers
73 views
run cron job on end of every month
I need to run a script at 2 pm on the end of every month. The reason i set 2 pm is i've a timezone of asia/calcutta and it differs 10 hrs and 30 min. from the server time.
I've set ...
2
votes
1answer
325 views
Is it possible to increase the response timeout in Google App Engine?
On my local machine the script runs fine but in the cloud it 500 all the time. This is a cron task so I don't really mind if it takes 5min...
< class ...
1
vote
3answers
220 views
any crontab alternative that you can start,stop, pause,resume, reschedule via an API in PHP?
Do you know crontab alternative that you can start,stop, pause,resume, reschedule via an API in PHP?
Or is this possible in crontab?
I have a long running php script that is executed by a cron. I ...
1
vote
2answers
227 views
Run Cron at Minute 0 of Specific Hour Set
What I'm trying to do is run a Cron job at specific hours such as 1,9,13,16 but only once for each of those hours. Setting it up every few hours doesn't work for me because it needs to be at specific ...
0
votes
4answers
25 views
Text-Message Gateways & Incrementing Bash Variable Daily
I have a bash script that is sending me a text daily, for 100 days.
#! /bin/bash
EMAIL="my-phone-gateway@address.net"
MESSAGE="message_content.txt"
mail $EMAIL < $MESSAGE
Using crontab, I can ...
0
votes
1answer
26 views
Cron Job in Fedora 8 - Not getting the desired result
OS : Fedora release 8
user : root
crontab -e :output
11 * * * * root /bin/touch /home/arun/Desktop/f1
But this cron job is not creating new file 'f1'.
/var/log/cron :says
Feb 21 09:11:01 ...
0
votes
0answers
24 views
Cron job's spaced out in 2:15 hour time window? [migrated]
I have a total of 9 cron jobs that I need to each to run once with 15 minute intervals in a 2:15 hour time window. So for example starting at midnight:
First Cycle
0:00 - Cron 1
0:15 - Cron 2
0:30 - ...
0
votes
1answer
17 views
Cron Task: Append current date to the filename via Cron?
I've created a Cron task at my webhost to daily backup my database and I would like it to append the current date to the filename.
My Cron job looks like this
mysqldump -u username -pPassword ...
0
votes
1answer
23 views
Unable to run file using Schtasks , in win 7
Using Schtasks command i create a job.
schtasks /create /sc minute /mo 20 /tn "My App" /tr c:\run.bat
it created successfully and run also.
Inside the run.bat file file i write this code :
dir ...
0
votes
2answers
23 views
Scheduled code execution in MVC3 application
Consider we have a working computer support incident management web site developed with ASP.NET MVC3. Currently, support staff operators register support incidents manually.
I need to implement a ...
0
votes
3answers
67 views
Getting cron job error because of <?php tag
I've set up a cron job to run. It executes a php file which is named cronj.php
But it doesn't work and cron job notification I get is:
/root/website/myworld/blabla/cronj.php: line 1: ?php: No such ...
0
votes
1answer
70 views
Cronjob for a executing a single method of Java class
Am a new bie to Java, Currently we are running a daily cronjob of executing a class (a struts2 web application project) which sends an email to two different team @ a specific time. The class includes ...
0
votes
0answers
157 views
How to invoke an EJB Session Bean method from a Quartz scheduled job using a JobDetail object?
I would like to invoke a method inside a stateless session bean every two seconds. Right now, my task works if I simply run a System.Out statement (look at the two commented lines in the code below). ...
0
votes
4answers
59 views
Is there away to know if a user is still on my site - instead of using cookies or sessions
I am wondering, if there is a real-time way time ping a user and see if that user is still only.
My site uses jQuery, PHP and CRON jobs
so I was wondering what would be the best way to check that the ...
0
votes
0answers
30 views
Cron syslog issue
I have written a custom cron. This cron executes a rake task every 5 minutes. I also log the trace of this execution in a file locally on my server. The whole process seems to execute seamlessly every ...
0
votes
0answers
38 views
How to make rails 3 app update array fields of certain model using cronjobs?
Initiative procedures already implemented:
(1) In config/schedule.rb
every 1.day, :at => "3:00 am" do
rake "bias_index:refresh"
end
(2) In lib/tasks/bias_index.rake
namespace :bias_index do
...
0
votes
2answers
82 views
php session sharing, in a desperate attempt to execute code in a different scope
I wonder why something like this wouldn't work (actually doesn't work):
4.php :
<php
session_start();
$my_id = session_id();
$_SESSION['username'] = (($_SESSION['username'] == 'nimic') ? 's-a ...
0
votes
2answers
257 views
Whenever cron job is not working in rails 3
This is the code in my schedule file. I am using 1 min just to test whether its working or not.
every 1.minutes do
runner "User.update_all('daily_sms_count' = 0 )"
end
from terminal i setup
...
0
votes
1answer
40 views
Cron task with php, how to randomly select a row when “id” = 20, transfer the row to another table and then truncate the old table
Cron task with php, how to randomly select a row when "id" = 20, transfer the row to another table and then truncate the old table
Can someone give me some direction on how to write this type of ...
-3
votes
1answer
40 views
set cron job for every 45 day to execute my php script using cron?
I need to run my cron after every 45 days in single line of shell terminal.
Please provide some solution for the same
Thanks