我被困了好几天,
我几乎没有什么好方法可以从cron job中调用phing任务。
实际问题是从cron调用phing任务后,php引擎无法找到build.xml文件,该文件位于我项目的主目录中
build.xml路径:abc / build.xml
phing path:abc / vendor / bin / phing
我的cron:1 * * * * xyz / local / www / abc / vendor / bin / phing test
答案 0 :(得分:1)
两种可能的解决方案。
首先,你可以在你的cron中使用cd
:
my cron : 1 * * * * cd /xyz/local/www/abc/ && vendor/bin/phing test
第二种解决方案,使用-f
选项:
my cron : 1 * * * * /xyz/local/www/abc/vendor/bin/phing -f /path/build.xml test
如果构建文件中的相对路径出现问题,还应在basedir
标记中设置<project>
属性:
<project default="help" name="my-project" basedir="/xyz/local/www/abc">
来源:
https://superuser.com/questions/155576/linux-how-to-run-a-command-in-a-given-directory
https://www.phing.info/phing/guide/en/output/chunkhtml/ch02s03.html
https://www.phing.info/phing/guide/en/output/chunkhtml/ch03s05.html