Symfony2 Cron命令路径

时间:2016-03-13 13:15:45

标签: php symfony cron

我在Symfony中设置了一个命令,它可以通过以下方式手动运行:

php -d memory_limit=1G /app/console comptage:absences --no-debug

我想通过Cron运行它。 我尝试了很多东西:

php -d memory_limit=1G /home/tharmo/app/console comptage:absences --no-debug

php -d memory_limit=1G /public_html/tharmo/app/console comptage:absences --no-debug

/public_html/tharmo/php -d memory_limit=1G /home/tharmo/app/console comptage:absences --no-debug

首先是两个,我得到没有指定的输入文件。 最后一个,我得到:

/usr/local/cpanel/bin/jailshell: /public_html/tharmo/php: No such file or directory

控制台的路径是:public_html/tharmo/app/console

服务器:运行cPanel的VPS PlanetHoster

1 个答案:

答案 0 :(得分:-1)

你应该用它的完整路径运行php。

/usr/bin/php /full/path/to/app