vote up 1 vote down star

I'm in the process of writing a scheduling application on a shared hosting server. So far it doesn't look like my scheduling will have to be any more granular than daily, but that could change later. Ideally, I'll want to use a Windows host so I write my application in .NET but I'm open to using a PHP+*nix host.

In a shared hosting environment (read: cheap) how can I write an application where notifications can occur on a scheduled basis?

flag

What type of events? – ojblass Apr 25 at 6:14

2 Answers

vote up 3 vote down check

On a *nix system, you're going to want to use cron. An example of its use, starting a process every day at 3:20 AM:

echo "20 3 * * * /path/to/run-my-job.sh" | crontab

edit: To answer the question asked in a comment on another response, it depends on the shared host; many of them allow you to run cron jobs.

link|flag
I never piped anything to crontab in my life till just now +1 – ojblass Apr 25 at 7:07
vote up 3 vote down

Are you wanting something like a cron job?

Steve

link|flag
Do shared hosts tend to allow you to do your own cron jobs? – Dinah Apr 25 at 6:25
Any good host allows you to run cron jobs, yes. My host allows SSH on shared accounts. – Pete Apr 25 at 6:36
1  
You can also use a tool like SetCronJob (setcronjob.com) if your host doesn't support cron jobs. – Steve Harrison Apr 25 at 6:42

Your Answer

Get an OpenID
or

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