Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I would like to let the user set a cron job through my system and i built it in php code. After my searching i found that only way set a cron job in windows is to use the program available in the windows.

However, there are some software on available to set my cron job in the web page, is it possible ? Thank you

This software allow me to send schedule email by setting in a php page

share|improve this question

2 Answers

I wouldnt advise allowing the web server to have the necessary rights to alter cron. But you could set up a single cron job thats a PHP script that runs every X minutes. Then in that script check a database table for specific tasks that were submitted by the end user.

share|improve this answer

You could try using http://cron.io to programmatically schedule events.

(I'm not affiliated with cron.io, I just think its an excellent idea)

share|improve this answer
Thanks. Is this a website or a file name in local computer? Because i can not enter this site. – Leo Chan Mar 19 '12 at 2:02
Its a website, api.cron.io – Gortron Mar 21 '12 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.