seonppc's avatar

Lumen blank page

Hello,

I have tried fresh installation of lumen at production machine but its shows blank page without any error, i have tried following...

sudo chmod -R 0777 storage

And even tried to remove compiled.php, but no luck. Can you suggest any better way to fix this. Thanks

0 likes
1 reply
toby's avatar

Hi,

where did you install the app? On homestead? If not, it could be an .htaccess issue. Otherwise, try the following:

open public/index.php

and change the $app->run(); statement to:

$request = Illuminate\Http\Request::capture();
$app->run($request);

Hope, it helps :)

Please or to participate in this conversation.