我的網(wǎng)站要設(shè)置一個計劃任務(wù),是通過打開一個網(wǎng)址實現(xiàn)的。官方的文件是下面這樣的。我輸入哪一個都不行。請求幫助。我應(yīng)該在后臺輸入什么才行呢?
Linux SystemYou can use one of the following commands depending on your server: lynx -source "http://www.yourwebsite.com/index.php?option=com_acymailing&ctrl=cron" > /dev/null Or wget -O /dev/null "http://www.yourwebsite.com/index.php?option=com_acymailing&ctrl=cron" > /dev/null If you access your website using an httpS protocol, you may want to use this command instead: wget --no-check-certificate -O /dev/null "https://www.yourwebsite.com/index.php?option=com_acymailing&ctrl=cron" > /dev/null Some hosting company block the lynx and wget command in which case you should use the curl one: curl --silent --compressed "http://www.yourwebsite.com/index.php?option=com_acymailing&ctrl=cron" > /dev/null 2>&1 |