|
For the Acajoom Plus and PRO to send your scheduled Newsletters, Auto-responders and SmartNewsletters, you need to set up a cron task on your server. The task you should setup is a call to the following url: http://www.yoursite.com/index.php?option=com_acajoom&act=cron (don't forget to replace www.yoursite.com by the URL of your own site)
The cron task will trigger your site every X minutes to automatically send your scheduled Newsletters, Auto-Responders or SmartNewsletters. Please read as well how to configure your Scheduler process if it's not already done. If you don't have access to a cron task on your control panel you can register for a free cron task at: http://www.joobisoft.com/. Our own site will launch your Acajoom component every 15 minutes so you don't need to configure anything on your CPanel or with JCron, JoobiSoft will do the job! Register and validate your account at http://www.joobisoft.com Login in Click on the User Menu called : My Cron Task Create a new cron task (click on the button Add) Configure your cron task (very easily!) - Select the type 'Acajoom' so our system will automatically create the good url to launch your Acajoom component
- Enter the url of your website ( http://www.yoursite.com )
- Choose a frequency (so our website will launch your Acajoom component every X minutes)
- Save the page
- If you choice the type 'Acajoom', our system will automatically complete your url to launch the Acajoom component so you should now see the url http://www.yoursite.com/index.php?option=com_acajoom&act=cron&Itemid=999
Cron task on your own server
If you rather want to use your own Cron task to launch your Acajoom component, here are some examples for different hosting control panels. Some providers can not launch the url of the Acajoom cron task. In that case, we recommend you to use our free service on joobisoft.com . The most popular hosting control panels are CPanel, Plesk and Interworx.
CPanel: This is a link to a video on how to set up a cron task http://www.2serveu.net/cpanel-tutorials/standardcron.html
Plesk:
This is a link to a video on how to set up a cron task http://www.swsoft.com/doc/tutorials/Plesk/Plesk7/plesk_plesk7_eu/plesk7_eu_crontab.htm
Interworx:
This is a link to a video on how to set up a cron task http://www.sagonet.com/interworx/tutorials/siteworx/cron.php
For general Linux crontab info click here http://www.computerhope.com/unix/ucrontab.htm#01 Setting up the command line on Unix There are different command line programs you can use to call the page from the command line. Not all of them may be available on a given server. - For example, you can use a Unix utility like 'wget':
wget -q 'http://www.yourwebsite.com/index.php?option=com_acajoom&act=cron'
Same with log file wget -q -O /home/public_html/cache/dull 'http://www.yourwebsite.com/index.php?option=com_acajoom&act=cron'
Note in this example that the output is thrown away (to /home/public_html/cache/dull ).
- A number of users of Acajoom have found that 'wget' sometimes fails. Especially if you have trouble with email digests not being sent on a daily basis to all users, an alternative command that solves the problem is:
php 'http://www.yourwebsite.com/index.php?option=com_acajoom&act=cron' Set up your cron task on DirectAdmin (Thanks to fonny.smets)
Log into DirectAdmin as user At Advanced Features select Cronjobs If you want a schedule every 10 minutes define as below:
Minute: */10 Hour: * Day of Month: * Month: * Day of Week: *
Command: /usr/bin/curl -s -o /dev/null "http://www.yoursite.com/index.php?option=com_acajoom&act=cron"
Important are the quotes around the URL. Otherwise all looks perfect but mail will never be send.
For paid cron service you can check : http://www.webbasedcron.com |