Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"localhost is currently unable to handle the request"

I just moved my laravel project from my Windows server to my Ubuntu server. When I try to load the app, it says this page isn't working. I would like to ask your assistance with regards to this matter. Thanksenter image description here

like image 990
Arcubalino Avatar asked May 20 '17 07:05

Arcubalino


3 Answers

For me it was permission issue on storage directory
set the storage directory permission to 0755 recursively

like image 82
Fisherman Avatar answered Nov 02 '22 10:11

Fisherman


Try this steps:

  1. open your terminal.
  2. move to your project folder.
  3. run php artisan serve.
  4. open your browser and type 127.0.0.1:8000 or localhost:8000.
like image 43
MohamedSabil83 Avatar answered Nov 02 '22 09:11

MohamedSabil83


There might be a permission issue in your laravel project directory. Because Laravel maintain logs for every action. Make sure the files and directories inside your laravel project have a 777 or 775 permission.

like image 40
Vishnu Avatar answered Nov 02 '22 11:11

Vishnu