Answer by code-8 for Could not open input file: artisan
If you project is at /home/forge/laravel-project/You can properly execute your artisan like this php /home/forge/laravel-project/artisan ...
View ArticleAnswer by Yevgeniy Afanasyev for Could not open input file: artisan
You cannot use php artisan if you are not inside a laravel project folder. That is why it says 'Could not open input file - artisan'.
View ArticleAnswer by DavidM for Could not open input file: artisan
I checked out an existing Laravel project, which did not have this script. Even a find / -name 'artisan' produced no results. The solution turned out to be simple, if a bit weird:curl -L...
View ArticleAnswer by Kevin Carmody for Could not open input file: artisan
I just needed to make artisan executable.chmod +x artisan...and it works without the php prefix then.
View ArticleAnswer by Marcin Nabiałek for Could not open input file: artisan
You need to first create Laravel project and if you already have one you need to go to this project dir using cd command in terminal for example cd myproject. Now you will be able to run any artisan...
View ArticleCould not open input file: artisan
When trying to create a new laravel project, The following error appears on the CLI:Could not open input file: artisanScript php artisan clear-compiled handling the post-install-cmd event returned with...
View Article