I'm not very good at configuring Heroku
I am trying to install an online application in PHP (using Code Igniter), but it does not work. Here is the error:
Heroku PHP app crash bash: vendor/bin/heroku-php-apache2: No such file or directory
index.php is located in the root folder. The suppliers directory is also located in the root folder. The composer did his work. In procfile:
web: vendor/bin/heroku-php-apache2
And in my index.php:
require('vendor/autoload.php');
In the past, I used the boot.sh path, so I don't like the new way. I followed this guide https://devcenter.heroku.com/articles/getting-started-with-php#introduction
I think I missed something obvious. But I do not know what. Thanks you
php codeigniter-2 heroku
Max
source share