0

everybody. I'm new to Laravel development.

I have a web application developed with Laravel 6. That is developed by others and currently running on the Linux server. I copied it to my Windows localhost and tried to run using WAMP. But I got HTTP 500 error in index.php of the project root when browsing localhost:8000.

The error is caused by the following part:

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);

How can I fix this?

DumTux
  • 668
  • 1
  • 9
  • 24

1 Answers1

0

You can find your solution with exactly this problem in this link:

Laravel crash on init with error 500 (no additional info)

Good luck:)

akbar
  • 625
  • 6
  • 12
  • My fix is not exactly the same as this one, but those are what I've done for running the local Laravel server and quite well explained. Thus, I check this as "solved". – DumTux Feb 07 '20 at 16:30