0

I have an install of Laravel running in sail, a mate has the same project (Laravel 9) and it runs fine on his system but on mine I get a 503. The error is occurring at this point in the index.php file…

$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
    $request = Request::capture()
)->send();

I can successfully dd before this block but it falls over with a 503 if I move the dd to be after it.

Can I also add that I have other development sites that run fine on my machine.

Any help on where to look would be greatly appreciated.

Gary

Shredder
  • 81
  • 6

1 Answers1

0

I've managed to get this working by moving he project to an external drive that is configured to be case sensitive.

Ryan M
  • 18,333
  • 31
  • 67
  • 74
Shredder
  • 81
  • 6