我正在通过 Dreamhost 面板运行 cron 作业。该站点正在使用基本的 HTTP 身份验证。
wget --http-user=[user] --http-passwd=[pw] http://www.example.com/script.php
它在第一次运行时就起作用了,但从那以后我得到了这个结果:
--2013-10-23 00:00:01-- http://www.example.com/script.php
Resolving www.example.com... [ip] Connecting to www.example.com|[ip]|:80... connected.
HTTP request sent, awaiting response... 401 Authorization Required Reusing existing connection to www.example.com:80.
HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
The file is already fully retrieved; nothing to do.
我不明白 416 错误,我不确定如何处理“文件已完全检索”行。我能想到的是,由于它正在重用现有连接,它不想再次实际运行脚本,所以也许我应该让它在每次运行后注销,但我不知道我在说什么关于。任何帮助表示赞赏。