Logo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
cronjob [2017/01/09 11:03]
sorin
cronjob [2017/03/31 11:29]
sorin [Why do you need a CRON Job?]
Line 12: Line 12:
 CRON is a service provided by most hosting solutions – including **Godaddy, Dreamhost, Hostgator**,​ etc... that allows you to run scheduled jobs that perform regular cleanups, backups or other scripts that need to run from time to time.\\ CRON is a service provided by most hosting solutions – including **Godaddy, Dreamhost, Hostgator**,​ etc... that allows you to run scheduled jobs that perform regular cleanups, backups or other scripts that need to run from time to time.\\
 \\ \\
-==== Why would you need that?==== + 
 +==== Why do you need a CRON Job? ==== 
 \\ \\
 PHP is running only when users are visiting your site. You have no guarantee that at a specific time there will be an instance of PHP running on your web server. This is why you have to ensure this through running at specific times the needed PHP script. PHP is running only when users are visiting your site. You have no guarantee that at a specific time there will be an instance of PHP running on your web server. This is why you have to ensure this through running at specific times the needed PHP script.
  
 \\ \\
 +
 +CRON jobs are tasks that run at scheduled times, where usually this is a service offered by the hosting provider. These tasks make sure that certain extension tasks run at a specific time. 
 + This way you make sure that for instance your users get the notifications about upcoming expiring auctions or information regarding their watchlists.
 +
 +
 +CRON jobs are required to keep an extension working properly. For detailed information about what each component needs a CRON for, check the detailed link at the bottom of this article.
 +
 +
 +
  
 ==== Which "​thePHPfactory"​ Extensions need Cron jobs?​==== ​ ==== Which "​thePHPfactory"​ Extensions need Cron jobs?​==== ​