laravel failed to open stream fatal error when running php artisan serve command

15,110

Solution 1

Most files are missing because you have not successfully installed Laravel.

Go to C:\xampp\htdocs\project> and type composer update --no-scripts or composer install

Since you are using xampp, once all the necessary files and packages are downloaded to your project you should be able to access your site through localhost without running php artisan serve by visiting

http://localhost/project/public

NB:Just ensure xampp is running

Solution 2

please go through the documentation first

https://laravel.com/docs/5.4#installation

you did not installed laravel projects correctly. you did not have vendor files. First you have to run :

composer install

dont need php artisan serve in xampp ... just go to

localhost/your_project/public

hope it helps !!!

Share:
15,110
Kritarth Billorey
Author by

Kritarth Billorey

BY DAY : I'm a PHP developer @ a startup company in bangalore BY NIGHT : I try to find something new something challenging for me it can be work related or anything apart from work or it can also be something supersticious. always open for suggestions.... if you have any suggestion for me right now you can drop it @ my twitter handle...

Updated on July 15, 2022

Comments

  • Kritarth Billorey
    Kritarth Billorey almost 2 years

    i had recently installed laravel in windows through composer made a new project named project in my xamp's htdocs folder then run "php artisan serve" comand in cmd but it is giving me error "failed to open stream" here is screenshot here I ran "php artisan serve" comand error is shown in above image I also tried to search my problem on stack overflow but couldn't find any solution that can suit my problem