🔧 Laravel — PHP Artisan Serve Failed
Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to
Solve error “Failed to listen on 127.0.0.1:8000 (reason: ?)” when run “php artisan serve”
Resolution
Access your php.ini file in your PHP version folder. If you like me are using Laravel Herd on Windows you can access using the route "%USERPROFILE%.config\herd\bin".
Now in your php.ini change the "variables_order" value.
// before
variables_order = "EGPCS"
// after
variables_order = "GPCS"
Alternative
If this don't work you can also start the server with PHP start command.
php -S localhost:8000 -t public
That's it. I hope it will help you.
...
🔧 Laravel — PHP Artisan Serve Failed
📈 65.46 Punkte
🔧 Programmierung
🔧 Laravel, artisan serve, and HTTPS
📈 50.02 Punkte
🔧 Programmierung
🔧 Artisan Serve no Lumen
📈 38.86 Punkte
🔧 Programmierung
🔧 Laravel Database: O que é e para que serve
📈 27.19 Punkte
🔧 Programmierung
🔧 How to Serve Laravel Apps With Valet on MacOS
📈 27.19 Punkte
🔧 Programmierung