Cron is a time-based job scheduler running as a daemon process in Unix-like computer operating systems.
2
votes
4answers
2k views
Scheduling php scripts
I want to create some function to schedule php scripts,for example if i want tu run page.php at 12/12/2012 12:12 i can call
schedule_script('12/12/2012 12:12','page.php');//or by passing a ...
1
vote
1answer
4k views
nohup: run PHP process in background
i try to run php processes in background and start this from an php file.
Some informations: PHP Version 5.2.17, php safe_mode is off, linux system. I start the process with exec, tried already ...
3
votes
1answer
446 views
Cron works on local host but not when deployed Appengine
I have a cron job in python that works on my localhost but when it is deployed to appengine, it no longer works.
pl = db.Query(Venue).order("id")
list = pl.fetch(limit=0)
for p in pl:
...
5
votes
6answers
4k views
12
votes
2answers
2k views
Facebook php post to fan page with cronjob?
I am using the following code to post to my facebook fan page and it is working fine. Now I want to use cronjob in order to post to Facebook. I know I have to use as access token but I am not sure how ...
12
votes
2answers
963 views
how to download mails attachment to a specific folder using IMAP and php
i am developing a site in which users can mail tickets and attach any type of files to a specific mail id. I need to add the mail subject content and attachment to database. I am doing this using ...
10
votes
2answers
9k views
How to run an X program from outside the X session (e.g. from the console or SSH)
Without being the person logged in at the console, how do I run an X application and have it display on that X session? Assume I am either root, or I am the same user who logged in, so in principle I ...
8
votes
6answers
19k views
How to get a unix script to run every 15 seconds?
I've seen a few solutions, including watch and simply running a looping (and sleeping) script in the background, but nothing has been ideal.
I have a script that needs to run every 15 seconds, and ...
7
votes
4answers
12k views
CRON job for codeigniter
I am using codeigniter. I want to know how to set up a cron job to check a table for expiring users and insert data in to another table with the list of expiring users. How to do that.
When i tried ...
5
votes
3answers
4k views
Need to set up rvm environment prior to every cron job
I installed and configured RVM roughly following the pattern outlined in the first part of this set of instructions: http://blog.ninjahideout.com/posts/a-guide-to-a-nginx-passenger-and-rvm-server
...
5
votes
3answers
3k views
Does a cron job kill last cron execution?
I have a cron job the executes a PHP script. The cron is setup to run every minute, this is done only for testing purposes. The PHP script it is executing is designed to convert videos uploaded to the ...
11
votes
6answers
8k views
$_SERVER['DOCUMENT_ROOT'] does not work in the php script running through cron
I use $_SERVER['DOCUMENT_ROOT']."/lib/sft_required.php"; to include the 'sft_required' file in a PHP script. When I run this file using browser, it works fine but when I run this as a cron job job, ...
6
votes
4answers
1k views
Best rails solution for a mailer that runs every minute
I have an application that checks a database every minute for any emails that are supposed to be sent out at that time. I was thinking about making this a rake task that would be run by a cron job ...
5
votes
2answers
6k views
How to set a persistent/regular schedule in Android?
How can I execute an action (maybe an Intent) on every specified time (e.g. Every day on 5AM)? It has to stay after device reboots, similar to how cron works.
I am not sure if I can use AlarmManager ...
5
votes
7answers
5k views
Using crontab with django
I need to create a function for sending newsletters everyday from crontab. I've found two ways of doing this on the internet :
First - file placed in the django project folder:
#! /usr/bin/env ...
3
votes
3answers
966 views
PHP- Need a cron for back site processing on user signup… (or fork process)
Whenever a new user signs up on my site, I want to do some pre-processing to shorten their searches in the future. This involves anywhere from 30 to 2 minutes processing time. Obviously I cannot do ...
11
votes
1answer
3k views
“Whenever” gem running cron jobs on Heroku
I created an app that uses the whenever gem. The gem creates cron jobs. I got it working locally but can't seem to get it working on heroku cedar. What's the command to do this?
running:
heroku run ...
6
votes
6answers
8k views
cron : how to schedule to run first Sunday of every month
Hi I need to schedule a cron job to run at at 9:00 AM on first Sunday of every month.
Did a little research and see that there is no short hand in cron to this.
Do you know of an optimal way ?
Using ...
6
votes
4answers
4k views
Why Doesn't My Cron Job Work Properly?
I have a cron job on an Ubuntu Hardy VPS that only half works and I can't work out why. The job is a Ruby script that uses mysqldump to back up a MySQL database used by a Rails application, which is ...
3
votes
2answers
3k views
What is equivelant of CRON jobs in Asp.Net
As in Php we have CRON jobs which hosting server automatically picks up and execute it as per schedule given. Similarly i want an alternative of CRON jobs in Asp.Net. I'd prefer a Web service but ...
2
votes
3answers
3k views
Cron Dispatcher CakePHP 2.0
I am using CakePHP 2.0 and have been trying to setup a cronjob to execute a method in a controller. I've been going nuts, looking over various tutorials and random sites to see if I could find a ...
2
votes
6answers
1k views
PHP & cron: security issues
Whats the best way to ensure that only CRON executes PHP scripts, and not someone else who stumbled upon your php scripts..
I was thinking a Password Variable.... but is this a legal CRON command? :
...
2
votes
1answer
5k views
Simple Spring, use of ClasspathApplicationContext for standalone apps, how to reuse?
If I have a standalone main application. Say 20 classes. They all may need to interface with the beans defined by the spring configuration (ApplicationContext) at any time. I would boostrap the ...
2
votes
6answers
4k views
Free Alternative to WebCron? [closed]
A service I've been using for cheap web hosting servers without cron access is a free service called webcron. However I just got an email from them today sayign they'll no longer be free:
The ...
0
votes
3answers
6k views
cron job with CakePHP
I have referred http://bakery.cakephp.org/articles/view/calling-controller-actions-from-cron-and-the-command-line and created cron_dispatcher.php and placed it in the app folder.
I have return some ...
12
votes
1answer
320 views
How do I go about creating an efficient content filter for certain posts?
I've tagged this post as WordPress, but I'm not entirely sure it's WordPress-specific, so I'm posting it on StackOverflow rather than WPSE. The solution doesn't have to be WordPress-specific, simply ...
8
votes
1answer
3k views
Timed Tasks (cron-like) in PHP
Is there a full featured, job scheduling package available for PHP? I'm looking for the PHP equivalent to Java's Quartz. I'm fine having things triggered externally from cron to drive the system. The ...
6
votes
5answers
9k views
How to get CRON to call in the correct paths
I'm trying to get cron to call in the correct path's. When I run a Python script from shell the script run's fine as it uses the path's set in bashrc but when I use cron all the path's are not used ...
6
votes
3answers
5k views
How to run a stored procedure in sql server every hour?
I have a table on which I want to perform some operations every hour. For this I created a Stored Procedure but don't know how to call it every hour. I know there are some kind of scheduled jobs, but ...
5
votes
4answers
6k views
Shell script: Ensure that script isn't executed if already running [duplicate]
Possible Duplicate:
Quick-and-dirty way to ensure only one instance of a shell script is running at a time
I've set up a cronjob to backup my folders properly which I am quite proud of. ...
4
votes
5answers
2k views
Why does my command-line not run from cron?
I have a perl script (part of the XMLTV family of "grabbers", specifically tv_grab_oztivo).
I can successfully run it like this:
/sw/bin/perl /path/to/tv_grab_oztivo --output /path/to/tv.xml
I use ...
3
votes
4answers
1k views
Are There Any Cron Jobs Alternative?
Cron Jobs are closed on my server and server admin doesn't accept open it. Because , cron jobs slowing server etc. So, i need an alternative.
I have to run a php file (cron.php) every 2 minutes.
...
2
votes
2answers
2k views
How to prevent the cron job execution, if it is already running
I have one php script, and I am executing this script via cron every 10 minutes on CentOS.
The problem is that if cron will take more than 10 minutes, than another same cron will start.
I tried one ...
2
votes
11answers
2k views
Is there any way to automatically run PHP script on Hosting web server withour cron?
I had a script which sends sms alerts everyday. I want it to send automatically send sms by fetching message from database. Can I do it without cron. Is there any other solution. Plz help
2
votes
3answers
6k views
How do you store your scripts for cron jobs in Zend Framework?
Because ZF depends on mod rewrite for all it's URLs, it's not immediately apparent to me where I should store local scripts for use with a cron job.
Does anyone have any recommendations, or is there ...
7
votes
4answers
5k views
How to append output to the end of text file in SHELL Script?
I want to append the output of a command to a text file. The shell script will be running after every 1 hour and I want to store/append the output of command to a text file for every hour over the ...
5
votes
3answers
2k views
can php cron jobs access session variables/cookies?
i am new to cron jobs and i have done much searching on this topic but i couldn't understand it fully. can cron jobs access cookies or session variables?
thanks!
5
votes
4answers
1k views
Cron API: is there such a thing?
Is there such a thing as a Cron API?
I mean, is there a programmatic way of adding/removing Cron jobs without stepping onto Cron's toes?
5
votes
9answers
2k views
Suggestions/Tricks for Throttling a PHP script
I have a scheduled task that runs a script on a regular basis (every hour). This script does some heavy interaction with the database and filesystem and regularly takes several minutes to run. The ...
4
votes
3answers
722 views
Is there an equivalent to cron in Windows?
I want to know if there is an equivalent cron in Windows and how I can use it programmatically using PHP.
3
votes
3answers
963 views
pass crontab a variable and read it from PHP?
I have managed to create a crontab,
for example, * * * * * php /my/directory/file.php
I want to pass a variable from this crontab to read it inside file.php
how can I do that?
Thanks.
3
votes
5answers
8k views
Shell run/execute php script with parameters
I need to execute a php file with parameters through shell.
here is how I would run the php file:
php -q htdocs/file.php
I need to have the parameter 'show' be passed through and
php -q ...
3
votes
4answers
4k views
PHP: Require path does not work for cron job?
I have a cron job that needs to include this file:
require '../includes/common.php';
however, when it is run via the cron job (and not my local testing), the relative path does not work.
the cron ...
3
votes
5answers
11k views
cron jobs or PHP scheduler
I am using MYSQL as my database and PHP as my programming language.I wanted to run a cron job which would run until the current system date matches the "deadline(date)" column in my database table ...
2
votes
1answer
838 views
Python Script Not Working Via Cron?
I have a python script that runs another python script. that 'other script' (script being run) takes ~ 45[min] to complete.
When the 'execution' script is run from Ubuntu's shell, it all works ...
2
votes
2answers
1k views
Have cron wait for job to finish before re-launching
I have a cronjob that executes every second minute that usually runs in seconds, but sometimes for several minutes.
I need cron to not execute the command if it's already running when the next ...
1
vote
4answers
917 views
How can I force PHP Version for Command Line?
I am hosted with 1and1.com, and I have setup my files to be parsed with php5 using .htaccess.
But that only works in apache, and not in command line, which defaults to the server default php4.
So ...
1
vote
2answers
1k views
Processing incoming e-mail with PHP Script
So I'm trying to figure out how to send an email to an address for example, something@whatever.com and instead of the e-mail going to there it would be instead sent or forwarded to a script that I ...
1
vote
1answer
714 views
Is there a java class for constructing a cron expression using a date?
I need to build a cron expression based on user input from a form. So I have a datepicker and a select box to choose the frequency. I can build a cron expression from this easily enough, but it feels ...
1
vote
3answers
430 views
what is a cron job [closed]
I see this every time I ask questions about backing up sql through php, but I don't know what is it, or how to install it, or how to use it in my computer(windows xp) to backup mysql database.