473,761 Members | 9,266 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cron jobs alternative, Yahoo Web Hosting

I have a website w/ Yahoo Web Hosting and unfortunately they do not
allow use of cron jobs. My site sends out automated personalized e-
mails on a regularly scheduled basis, currently via the method of
placing the e-mail PHP code on a page on the site and accessing it at
some point each day.

I would like to set it up as fully automated on the server, but how
can I do this without cron jobs? Are there alternatives? Seems like
SourceForge has a few million e-mail reminder "programs" but the ones
I found generally require cron jobs.
Jun 2 '08 #1
5 4342
On 19 May, 16:18, Josh <jjreic...@gmai l.comwrote:
I have a website w/ Yahoo Web Hosting and unfortunately they do not
allow use of cron jobs. My site sends out automated personalized e-
mails on a regularly scheduled basis, currently via the method of
placing the e-mail PHP code on a page on the site and accessing it at
some point each day.

I would like to set it up as fully automated on the server, but how
can I do this without cron jobs? Are there alternatives? Seems like
SourceForge has a few million e-mail reminder "programs" but the ones
I found generally require cron jobs.
Run a cron job somewhere else (or maybe just a Windoze scheduled job)
to access the page via CURL or the like.

Alternatively, change your hosting.
Jun 2 '08 #2
Josh escribió:
I have a website w/ Yahoo Web Hosting and unfortunately they do not
allow use of cron jobs. My site sends out automated personalized e-
mails on a regularly scheduled basis, currently via the method of
placing the e-mail PHP code on a page on the site and accessing it at
some point each day.
The alternative that always works, if you don't mind depending on a
third party server, is using an external service to call a URL in your
site that triggers the appropriate scripts.

This is the first Google result:

http://www.webcron.org/

As about security*, you can do all soft of tricks from giving the URL a
long random name to filtering by IP.

(*) By security I basically mean not getting your scheduled tasks
triggered randomly 100 times a day.

Anyway, I hope Yahoo Web Hosting is free. Otherwise, cron support is
quite a basic feature in hosting plans.

--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--
Jun 2 '08 #3
Thanks very much for the help.

I started the site about 1.5 years ago before I knew anything about
programming at all so I was not knowledgeable enough to select a good
hosting service. Now I'm kind of stuck because moving servers is such
a pain. I've run into 2 problems w/ Yahoo so far: no cron jobs and no
access mod_rewrite. I didn't even know what those things meant a year
ago, but of course now it's a real pain.

For the short term I'll look into the solutions you guys offered. For
the long-term I'll have to change hosting services. I hear GoDaddy is
a good choice. Recommendations ?
Jun 2 '08 #4
Josh escribió:
For the short term I'll look into the solutions you guys offered. For
the long-term I'll have to change hosting services. I hear GoDaddy is
a good choice. Recommendations ?
My personal experience with GoDaddy was terrible. The PHP interpreter
would crash randomly with very simple scripts, something like once in
five page loads, and all I got from their support staff was: "We cannot
help with user script issues, have a nice day". It is very cheap, though.
--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--
Jun 2 '08 #5
To restore balance to the world Josh wrote in
d5************* *************** **...legroups .com
>Thanks very much for the help.

I started the site about 1.5 years ago before I knew anything about
programming at all so I was not knowledgeable enough to select a good
hosting service. Now I'm kind of stuck because moving servers is such
a pain. I've run into 2 problems w/ Yahoo so far: no cron jobs and no
access mod_rewrite. I didn't even know what those things meant a year
ago, but of course now it's a real pain.

For the short term I'll look into the solutions you guys offered. For
the long-term I'll have to change hosting services. I hear GoDaddy is
a good choice. Recommendations ?
Use godaddy to register your domain but hosting :( moving hoste should not
be to painful if you plan it well.Move site over to new host make sure all
is working ok then change the dns to point to your new host..

Give it a go, some good hosting deals out there from around a £10 a year
some for free.

Chris

--
Superb hosting & domain name deals http://dn-22.co.uk
The Handyman http://www.looker.me.uk
The FlatPack Man http://www.flat-pack.info
Jun 2 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
13349
by: volantecho | last post by:
hi, i m using webmin to create a cron job of a php script. While i click on 'run it now', it works, generate the output. However, the php script doesnt execute for every minutes which i've set to. besides the php scripts, i have other scripts run under cron jobs, such as perl scripts and log files. I couldnt understand why my php scripts doesnt work under cron job.
6
2678
by: sherryonline | last post by:
i have a page and i need that page to be called every day at 12:00 that page is going to connect to the database fetch some emails and will start mailing them how i am goning to do this.
4
3052
by: vagrantbrad | last post by:
I'm using python 2.4 running on Fedora Core 4. I have written a python program called ipscan.py that checks the external ip address of my cable internet connection, and on change, will update the dns records at my dns provider, zoneedit. So basically, I've setup dynamic dns using python. Once the ip compare and/or update is complete, I log the results to a text file called update.log. When I run the program in a bash shell with the...
6
1822
by: giangiammy | last post by:
I don't know if this is possible, but I need to accomplish an action at a given hour (what cron does): is it possible to do something like this having a web hosting service with php support? any other possibilities to do something like this without having access to cron facilities? thanks giammy
4
1566
by: Paul Lautman | last post by:
I have a simple script that has been running as a cron job for about 2 years. Recently my hosting company moved to new servers and now the job does not run. They have said that "The server configuration is newer and your script will not run as it's a PHP file which contains some HTML." By this I think they mean that there is some HTML output outside the <?php ?braces.
4
2393
by: Rahul | last post by:
Hello All, I have come accross a very interesting as well as a very complex scenario with my current project. My worry is the scheduling of email messages and execution of that based on the cron jobs. For this I am using cron .Suppose Cron is set to execute a file after every five minutes .It executes and returns all the details of scheduled emails suppose 10. Now my problem is how can I synchronize this with the current date and time...
10
1887
TheServant
by: TheServant | last post by:
I apologies if this is in the wrong place, but I have a basic question about CRON jobs. My provider has a little program, which I am guessing automatically creates CRON jobs. Basically I check boxes to say how often I want it to run and then enter a command to run. I want a php file of mine to run, but I can't get it to work. I have tried: http://mydomain.com/myfolder/myphpfile.php /home/public_html/myfolder/myphpfile.php And a few...
5
1730
by: JRough | last post by:
I want to run a php script every day. The page goes to a directory and parses a file and adds data to the database. Where it says "command" in cron jobs I don't know what it is looking for? Can I put the name of my php file? This is what I have: Minute Hour Day Month Weekday Command 1 8 1-7 1-31
5
2326
by: Lawrence Krubner | last post by:
Do any problems come up when using a static variable in a cron job? Assuming the cron job is called every 5 minutes for one year. Assume I've got an array that stores the names of which users are logged in to a particular website at the current moment. Would it cause me trouble if I made this array static? If it would cause trouble, what's the easiest way to persist the data? I could use a database, but that seems heavy handed for a 20...
0
9531
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9957
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9775
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3456
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2752
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.