skip to Main Content

enter image description here

ErrorException

Undefined array key 1

at vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:368
364▕ $line = str_replace(‘ ‘, ‘ ‘, $line);
365▕
366▕ preg_match($regex, $line, $matches);
367▕
➜ 368▕ return Carbon::createFromFormat(‘D M d H:i:s Y’, $matches[1]);
369▕ }
370▕
371▕ /**
372▕ * Get the request port from the given PHP server output.

1 vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:368
IlluminateFoundationBootstrapHandleExceptions::IlluminateFoundationBootstrap{closure}("Undefined array key 1", "C:xampphtdocslara appp2vendorlaravelframeworksrcIllu
minateFoundationConsoleServeCommand.php")

2 vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:297
IlluminateFoundationConsoleServeCommand::getDateFromLine("[Wed Oct 16 04:16:49 2024] 127.0.0.1:52784 Accepted")

i completly reinstall the the xampp and composer but still getting this error

3

Answers


  1. I solve my problem with run this code :

    1. php artisan config:clear
    2. php artisan cache:clear
    3. php artisan view:clear
    4. Then run artisan serve

    or

    run composer update

    if, not fixed try downgrade the laravel version

    Login or Signup to reply.
  2. lol same get error
    ErrorException

    Undefined array key 1

    at vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:368
    364▕ $line = str_replace(‘ ‘, ‘ ‘, $line);
    365▕
    366▕ preg_match($regex, $line, $matches);
    367▕
    ➜ 368▕ return Carbon::createFromFormat(‘D M d H:i:s Y’, $matches[1]);
    369▕ }
    370▕
    371▕ /**
    372▕ * Get the request port from the given PHP server output.

    1 vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:368
    IlluminateFoundationBootstrapHandleExceptions::IlluminateFoundationBootstrap{closure}("Undefined array key 1", "D:Interndiscussion-appvendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php")

    2 vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:297
    IlluminateFoundationConsoleServeCommand::getDateFromLine("[Wed Oct 16 09:29:44 2024] 127.0.0.1:51714 Accepted")

    WhoopsExceptionErrorException

    Undefined array key 0

    at vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:320
    316▕ microtime(true),
    317▕ ];
    318▕ }
    319▕
    ➜ 320▕ [$startDate, $file, $startMicrotime] = $this->requestsPool[$requestPort];
    321▕
    322▕ $formattedStartedAt = $startDate->format(‘Y-m-d H:i:s’);
    323▕
    324▕ unset($this->requestsPool[$requestPort]);

    1 vendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php:320
    WhoopsRun::handleError("Undefined array key 0", "D:Interndiscussion-appvendorlaravelframeworksrcIlluminateFoundationConsoleServeCommand.php")

    2 vendorlaravelframeworksrcIlluminateCollectionsTraitsEnumeratesValues.php:257
    IlluminateFoundationConsoleServeCommand::IlluminateFoundationConsole{closure}("[Wed Oct 16 09:29:44 2024] 127.0.0.1:51719 Closing")

    Login or Signup to reply.
  3. The error you are getting is related to a wrong configuration of x-debug.
    Disable it, and run again laravel.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search