我有以下问题,我的PHP脚本是这样的:
#!/usr/bin/php
<?PHP
// Define the path to file
$file = 'mydb.sql';
if(!file)
{
// File doesn't exist, output error
die('file not found');
}
else
{
// Set headers
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: inline; filename=$file");
header("Content-Type: application/x-sql ");
header("Content-Transfer-Encoding: binary");
// Read the file from disk
readfile($file);
}
?>
现在我想通过crontab调用我的PHP脚本,我的cron命令是:
0 0 * * * /web/conf/ -q /home/content/81/10928381/html/dumper/work/backup/pr_download.php
但是为什么,每次我运行我的脚本时,它总是向我发送一条错误消息: / bin / sh:0:找不到命令
你能帮帮我们吗?
由于
答案 0 :(得分:3)
什么是/ web / conf /?你在这里缺少一个可执行命令......你想要wget
吗?
如果你想使用php可执行文件,请查看可执行文件的位置。例如/ usr / sbin / php
然后做
0 0 * * * /usr/sbin/php -f /home/content/81/10928381/html/dumper/work/backup/pr_download.php
答案 1 :(得分:0)
试试这个
php -f /home/content/81/10928381/html/dumper/work/backup/pr_download.php >> /tmp/script_log.log
答案 2 :(得分:0)
我认为在尝试将Windows文件(DOS格式)作为脚本执行时遇到了同样的错误。
试试这个:
dos2unix pr_download.php
然后再次尝试运行脚本。
让我知道它是否有效。