0
votes
1answer
21 views
Infrastructure for Running your Zend Queue Receiver
I have a simple messaging queue setup and running using the Zend_Queue object heirarchy. I'm using a Zend_Queue_Adapter_Db back-end. I'm interested in using this as a job queue, to schedule things …
-1
votes
11answers
135 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
0
votes
2answers
40 views
How to install cron. Im a newbie
I want to run PHP scripts automatically. For that I googled and I came to know about CRON. But I dont know how to install and use it. Im using only PHP, CSS, HTML, and running on XAMP apache server on …
0
votes
0answers
64 views
how to create a cron job that runs on the first day of month [closed]
Hi,
There are fields on my server's control panel like this
Minute - Hour - Day of month - Month - Day of the week - Command
How can i create a cron job runs on first day of the month with this …
2
votes
3answers
80 views
Advanced cron for a perl script
I have a Perl script that needs to run following an annual schedule with specific dates and times of when to start and stop. I don't believe crontab can handle this. Is there a Perl module (even a …
1
vote
1answer
30 views
Wille php copy() work for a person viewing the site who has the site which i’m copying from blocked?
Say I use php copy(), to get a file from a site.
And then a user who is using a proxy filtering service that has that site blocked, will the site still be able to copy that file for the user?
If …
0
votes
1answer
30 views
Cron on XAMPP (Mac OS)
Hi All,
I have installed XAMPP server on my Mac OS, how to setup a cron job on it?
My requirement is that i want to call a php script at regular intervals .
Thanks
0
votes
2answers
46 views
cron in google app engine python
i have made app using google app engine in pythonof weekly Project and assessment report submitting... i want to check that on Friday who have submitted the report and who don't just send the …
0
votes
1answer
66 views
Email using cron job
i have made app using google app engine in pythonof weekly Project and assessment report submitting...
i want to check that on Friday who have submitted the report and who don't just send the …
0
votes
0answers
23 views
Magento - Layered Nav Refresh Timeout - Cron Issue - Prices Disappear
Hello
This is a problem for certain Magento users. The cron is supposed to refresh the layered navigation and sometimes it times out. When it does so, the prices will disappear for products that …
1
vote
2answers
41 views
Call a Kohana helper from cron (or any URL)
I need to call a Kohana helper (or any php MVC framework) from a Cron job.
How can I do this?
The server is Linux, so, I can only think of two possible solutions:
1- Open an URL from the cron job, …
1
vote
3answers
40 views
Eval to variable failing (w/Crontab)
Here's a snippet of a bash script I'm writing to log CPU loads:
#!/bin/bash
# ... irrelevant nonsense ...
cmd1="/usr/bin/mpstat -P ALL | egrep '(AM|PM)([[:space:]]+)(0)' | tr -s ' ' | cut -d' ' -f4"
…
0
votes
1answer
36 views
How to get the cron working when using Javan-whenever in Rails
I have setup my schedule.rb file as follows.
set :cron_log, "/log/cron_log.log"
if Rails.env.development?
every 1.minute do
runner "SomeModel.move_values"
runner "SomeOtherModel.dispense"
…
0
votes
2answers
60 views
Running a php cron job - problem with execution time
Hello,
I have a site where I download data from one site using cUrl a then generate a image from it, which is stored on the server and displayed on other websites.
I've got everything working …
1
vote
4answers
107 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.
