意外标记附近的 Cron 语法错误
Cron syntax error near unexpected token
已将网站移至另一台服务器。将文件 statistic.php 添加到 Сron 以执行。只有这个 Cron 不喜欢什么。写入错误:
/home/site/www/statistic.php: line 1: ?php: No such file or directory
/home/site/www/statistic.php: line 2: syntax error near unexpected token `"bd.php"'
/home/site/www/statistic.php: line 2: `include ("bd.php");
有我的代码
<?php
include ("bd.php");
$result = mysql_query("SELECT MAX(id) FROM statistic_dep",$db);
$myrow1 = mysql_fetch_array($result);
$last_id=$myrow1[0];
...
确保您将脚本作为 php 脚本执行,而不是作为 bash 脚本执行。
您的 crontab 应如下所示:
* * * * * /usr/bin/php -f /path/to/file.php
另一种执行脚本 php 的方法是在第一行添加一个 shebang:
#!/usr/bin/php
<?php ...
已将网站移至另一台服务器。将文件 statistic.php 添加到 Сron 以执行。只有这个 Cron 不喜欢什么。写入错误:
/home/site/www/statistic.php: line 1: ?php: No such file or directory
/home/site/www/statistic.php: line 2: syntax error near unexpected token `"bd.php"'
/home/site/www/statistic.php: line 2: `include ("bd.php");
有我的代码
<?php
include ("bd.php");
$result = mysql_query("SELECT MAX(id) FROM statistic_dep",$db);
$myrow1 = mysql_fetch_array($result);
$last_id=$myrow1[0];
...
确保您将脚本作为 php 脚本执行,而不是作为 bash 脚本执行。
您的 crontab 应如下所示:
* * * * * /usr/bin/php -f /path/to/file.php
另一种执行脚本 php 的方法是在第一行添加一个 shebang:
#!/usr/bin/php
<?php ...