user10955215
user10955215

Reputation:

localhost:8000 not working. It's just loading infinitely?

I'm working on Laravel 5.6 and I downloaded code from the server and set it up successfully in localhost.

If run cmd php artisan serve then it works correctly but when I open the browser and type localhost:8000 or 127.0.0.1:8000 and open my project in the browser, then the browser buffers the page infinitely.

Upvotes: 2

Views: 5846

Answers (1)

Anuj Jaha
Anuj Jaha

Reputation: 92

  1. Give permission to storage folder
  2. Generate key using php artisan generate:key
  3. Make sure you have .env file in root folder
  4. Check for HTACCESS redirection
  5. Check database connection ( setup correctly )

Still getting issue then provide more details like screen-shot etc.

Upvotes: 2

Related Questions