'localhost:8000 is not working in loading laravel project
I'm working on laravel project. First I encountered a fatal error of maximum number of bytes. I fixed that, after fixing and restarting my Apache when I started to run php artisan it worked correctly but now I'm not able to access my project in browser (after running) php artisan.
The browser just says page not found and the buffering of that page is like infinite. what's happening don't know !!! :(
Solution 1:[1]
Try to change port using --port param,
php artisan serve --port=8000
Solution 2:[2]
Try this command and use 8080 port number: php artisan serve --host=127.0.0.1 --port=8080
Solution 3:[3]
I changed the port and refreshed the server. It worked.
Initially:
app.listen(3000);
Later:
app.listen(3001);
Solution 4:[4]
Why not try running Laravel on a virtual host?
Solution 5:[5]
In my case php artisan serve --host=127.0.0.1 --port=8080 this command worked.Try this ....
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Udara Chathuranga |
| Solution 2 | I Am-Mad |
| Solution 3 | Ank_247shbm |
| Solution 4 | Seyi Daniels |
| Solution 5 | Riaz Bappy |
