0

I download a fresh laravel project from someone for testing.

After setting up and running using php artisan serve, the locahost (http://localhost:8000/) keep loading slowly then It shows message 404 not found.

I have tried to solve using command line php artisan serve --port=1010 and run http://localhost:1010/ on broswer but It didn't work.

And I also used php -S localhost:8000 -t public or php -S 127.0.0.1:8000 -t public after run localhost:8000 on broswer but it still didn't work.

any idea?

Toeur Tenh
  • 63
  • 2
  • 14

1 Answers1

0

Check once there is storage/framework/cache/data and storage/framework/sessions directory created or not, if those doesn't exist then create manually.

Vijay
  • 151
  • 1
  • 7