Tag Archive for "curl" tag

curl

October 16th, 2009 by Slavi | 0

[code language="php"] /usr/bin/curl https://secure.mydomain.com/cronjob.php 2>/dev/null >/dev/null [/code] if you forget to renew your certificate your cron job may stop working so you may want to use this syntax instead [code language="php"] /usr/bin/curl --insecure https://secure.mydomain.com/cronjob.php 2>/dev/null >/dev/null [/code]