By Alexandre Ndobe on Monday, 21 August 2017
Posted in General Issues
Replies 3
Likes 0
Views 756
Votes 0
is this correct for a cpanel cron job setting?
[gist type="php"]
/usr/bin/wget -O /dev/null "https://mysite.org/index.php?option=com_easyarticles&task=cron"; >/dev/null 2>&1
[/gist]
This is the correct cron URL for EasyArticles.
[gist type="php"]
/usr/bin/wget -O /dev/null "https://mysite.org/index.php?option=com_easyarticles&cron=true"; >/dev/null 2>&1
[/gist]

But different hosting also having different wget path, perhaps you can try set following Cronjob command then set your current email address into your cronmail section, so after this cron executed, your server will send you a response into your email and see whether this cron is it executed correctly or not.

[gist type="php"]
/usr/bin/wget -O /dev/null "https://mysite.org/index.php?option=com_easyarticles&cron=true";
[/gist]
·
Monday, 21 August 2017 08:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Many thanks!
Is this the same for all the stackideas components? EB, ES, ED, Komento ?
Please kindly state the cron url for each of these for me, please.
Thanks
·
Tuesday, 22 August 2017 01:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alexandre,

As always, the wget path will depend on your hosting.

Below are the urls for the other extensions. We are planning to standarize the cron url for all extensions in the future to prevent confusion.

However, not to worry as old cron urls will still work.
[gist type="php"]
https://mysite.org/index.php?option=com_easyblog&task=cron
https://mysite.org/index.php?option=com_easysocial&cron=true
https://mysite.org/index.php?option=com_easydiscuss&task=cron
https://mysite.org/index.php?option=com_komento&task=cron
[/gist]
·
Tuesday, 22 August 2017 12:44
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post