Browse Source

Correctif "Failed to start the session"

develop
Guillaume Bourgeois 11 months ago
parent
commit
bdc6ba910d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      EventListener/ExceptionListener.php

+ 3
- 3
EventListener/ExceptionListener.php View File

// You get the exception object from the received event // You get the exception object from the received event
$exception = $event->getThrowable(); $exception = $event->getThrowable();


// On détecte une erreur interne (500), on remove les sessions qui servent de filtre dans l'admin
if ($exception instanceof HttpExceptionInterface != true) {
// On détecte une erreur interne (500), on remove les sessions qui servent de filtre dans l'admin
/*if ($exception instanceof HttpExceptionInterface != true) {
if (!headers_sent()) { if (!headers_sent()) {
foreach ($this->session->all() as $key => $s) { foreach ($this->session->all() as $key => $s) {
if (str_contains($key, "_filter")) { if (str_contains($key, "_filter")) {
} }
} }
} }
}
}*/
} }
} }

Loading…
Cancel
Save