提问人:Khushal Chheda 提问时间:6/10/2018 更新时间:6/11/2018 访问量:110
从 cron 调用 phing 任务
Call phing task from cron
问:
我被困了好几天,
我需要一些好方法来从 cron job 调用 phing 任务。
实际问题是从 cron 调用 phing 任务后,php 引擎找不到 build.xml 文件,该文件位于我项目的主目录
build.xml 路径:abc/build.xml
phing 路径:abc/vendor/bin/phing
我的cron:1 * * * * xyz/local/www/abc/vendor/bin/phing测试
答:
2赞
jawira
6/11/2018
#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
如果 buildfile 中的相对路径有问题,还应在标记中设置属性: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
评论
0赞
Khushal Chheda
6/11/2018
第一个解决方案对我有用,非常感谢我第二个解决方案确实有效,无法正确识别问题,还有 1 种方法,但不推荐,即 shell 脚本
评论