Error 500 Internal Server Error

GET https://alpha.stage.bewelcome.org/rox/in/da

Exceptions

Warning: Header may not contain more than a single header, new line detected

Exception

ErrorException

Show exception properties
ErrorException {#556
  #severity: E_WARNING
}
  1. }
  2. $newValues = null === $previousValues ? $values : array_diff($values, $previousValues);
  3. foreach ($newValues as $value) {
  4. header($name.': '.$value, $replace, $this->statusCode);
  5. }
  6. if ($informationalResponse) {
  7. $this->sentHeaders[$name] = $values;
  8. }
  1. *
  2. * @return $this
  3. */
  4. public function send(bool $flush = true): static
  5. {
  6. $this->sendHeaders();
  7. $this->sendContent();
  8. if (!$flush) {
  9. return $this;
  10. }
  1. public function run(): int
  2. {
  3. $response = $this->kernel->handle($this->request);
  4. if (Kernel::VERSION_ID >= 60400) {
  5. $response->send(false);
  6. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  7. fastcgi_finish_request();
  8. } elseif (\function_exists('litespeed_finish_request') && !$this->debug) {
  9. litespeed_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/srv/bewelcome/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 23:20:49 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "f91d4c"
    },
    "request_uri": "https://alpha.stage.bewelcome.org/_profiler/f91d4c",
    "method": "GET"
}

Stack Trace

ErrorException
ErrorException:
Warning: Header may not contain more than a single header, new line detected

  at vendor/symfony/http-foundation/Response.php:353
  at Symfony\Component\HttpFoundation\Response->sendHeaders()
     (vendor/symfony/http-foundation/Response.php:401)
  at Symfony\Component\HttpFoundation\Response->send(false)
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:38)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
     (public/index.php:5)