Lumen not working out of the box

2020-02-28 07:44发布

Just installed Lumen framework. hit the link http://localhost/lumen/public/ in my browser and got this following error, anyone got any idea about it? Traced it back to the app.php file in bootstrap folder.

lumen application.php error

4条回答
Root(大扎)
2楼-- · 2020-02-28 08:32

At the moment Lumen only runs in the domain root.
(I've submitted a PR that fixes this but it has yet to be merged)

You have to create a Virtual Host on your local webserver and point the document root of that to the public directory. After that you can access your app with something like: http://lumen.dev.

A simple alternative to setting this up manually is Laravel Homestead. It is an official Vagrant box made for Laravel, that allows you to easily get your development environment up and running.

查看更多
贼婆χ
3楼-- · 2020-02-28 08:34

if You want to access lumen project without "php artisan serve"

$app->run(); replace with $request = Illuminate\Http\Request::capture(); $app->run($request); from this path yourlumenproject/public/index.php

查看更多
姐就是有狂的资本
4楼-- · 2020-02-28 08:34

if you want to serve your app in local development you can do this :

php -S localhost:8000 -t public/

and it will serve in localhost in port 8000. hope this help.

Note : I'm using Laravel Framework version Lumen (5.2.4) (Laravel Components 5.2.*)

查看更多
Summer. ? 凉城
5楼-- · 2020-02-28 08:40

Open your terminal in the root folder run the following command php artisan serve.

Lumen development server started on http://localhost:8000/

查看更多
登录 后发表回答