我对Heroku设置不太满意
我正在尝试将应用程序放在PHP中(使用Code Igniter),但它不能正常工作.这是错误:
Heroku PHP app crash bash: vendor/bin/heroku-PHP-apache2: No such file or directory
index.PHP在根文件夹中.供应商目录也位于根文件夹中
作曲家完成了他的工作
在procfile中:
web: vendor/bin/heroku-PHP-apache2
在我的index.PHP中:
require('vendor/autoload.PHP');
在过去我使用boot.sh方式,所以我对新方式感到不舒服.
我按照本教程
https://devcenter.heroku.com/articles/getting-started-with-php#introduction
我想我错过了一些明显的东西.但我不知道是什么.
谢谢
您的composer.json可能会将bin-dir设置重新定义为除vendor / bin之外的其他设置.运行composer config bin-dir来查看它是什么(或者查看你的composer.json的config部分,并相应调整procfile中heroku-PHP-apache2的路径.
原文链接:https://www.f2er.com/php/137821.html您也可以只更改Procfile以自动读取正确的值:
web: $(composer config bin-dir)/heroku-PHP-apache2
https://devcenter.heroku.com/articles/php-support#web-servers的笔记也提到了这个bin-dir警告.