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?

Hotte Shen
  • 643
  • 8
  • 21

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
  • 424
  • 4
  • 11
  • 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". – Hotte Shen Feb 07 '20 at 16:30