Is this possible?
I want to perform a task with a php file, (updating a feed) which I want to do automatically once a day. I DON'T want to have to load the file in a browser by hand. The file itself could be anything (very small and fast) but it needs to be run every day.
The trouble is, I don't have access to my command line, or automated tasks via my webhost. So I can't run a cron job, right?
Two thoughts were running the file as an infinite loop using the sleep() function (unnecessary load on server / buggy / timeout problems / overall bad solution?) or getting a third party to load it for me. (Is this service available?)
Do any gurus out there know a way to cleverly sidestep this problem? I really don't want to have to pay more for access to my command line, (I run a very small photo site - markraymondmason.com), and I have a feeling I should be able to do it some other way.
Thanks...