0

我以前从未写过 cron 作业 cmd,我想在我的网站上运行它之前确保它是正确的,这样就不会出现任何问题。

我的脚本 autopost.php 抓取了一个 json 提要并添加到我的数据库中。通常我只是将我的浏览器指向该文件,以便它运行并更新数据库,但我听说 cronjobs 可以为我自动执行此操作。这是正确的吗?

wget -O http://www.domain.com/autopost.php 

编辑:

好的,在你的帮助下,我得到了它的工作。但是,它仅在我在 wget -O 之后添加 /dev/null 时才有效,这是为什么?

4

2 回答 2

1

-sure it can !!

follow this link and you will be able to program you job every time you want : www.aodba.com

于 2012-07-18T20:00:38.260 回答
1

You're missing the run schedule part of the cron command. you need something like this:

* * * * * wget -O http://www.domain.com/autopost.php 

That says "do a wget every minute. For the syntax, see: http://www.adminschoice.com/crontab-quick-reference

于 2012-07-18T20:01:19.920 回答