7

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

zegulas
  • 417
  • 2
  • 6
  • 18
  • 2
    You might want to look at [Laravel Homestead](http://laravel.com/docs/5.0/homestead) for local development. – ntzm Apr 18 '15 at 09:07

4 Answers4

28

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

8

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

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

8

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.*)

Gujarat Santana
  • 9,854
  • 17
  • 53
  • 75
6

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.

lukasgeiter
  • 147,337
  • 26
  • 332
  • 270