From d521f431116b477a64a4517ca2f85c0d15d09657 Mon Sep 17 00:00:00 2001 From: Laurent Laffont <llaffont@afi-sa.fr> Date: Tue, 28 Sep 2021 14:23:23 +0200 Subject: [PATCH] dev #141983 on Zend_Session start error, automatically reload the page --- VERSIONS_WIP/141983 | 1 + library/startup.php | 32 ++++++++++++++++++++++++-------- 2 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 VERSIONS_WIP/141983 diff --git a/VERSIONS_WIP/141983 b/VERSIONS_WIP/141983 new file mode 100644 index 00000000000..02a0e411c2c --- /dev/null +++ b/VERSIONS_WIP/141983 @@ -0,0 +1 @@ + - ticket #141983 : Rechargement automatique de la page lorsque la session n'a pu être ouverte \ No newline at end of file diff --git a/library/startup.php b/library/startup.php index 9e404f1a355..93b8bb6536a 100644 --- a/library/startup.php +++ b/library/startup.php @@ -202,14 +202,30 @@ class Bokeh_Engine { function setupSession() { - // Start Session - $session = new Zend_Session_Namespace(md5(BASE_URL)); - if (!isset($session->initialized)) - { - Zend_Session::regenerateId(); - $session->initialized = true; - } - if (!isset($session->baseUrl)) $session->baseUrl = BASE_URL; + try { + $session = new Zend_Session_Namespace(md5(BASE_URL)); + } catch (Zend_Session_Exception $e) { + header('HTTP/1.1 503 Service Unavailable'); + echo '<html>' + . '<body style="text-align:center">' + . '<img src="' . URL_SHARED_IMG . '/patience.gif' . '" />' + . 'Attente de connexion...' + . '<script>' + . 'setTimeout(() => window.location.reload(),5000);' + . '</script>' + . '</body>' + .'</html>'; + exit(); + } + + if (!isset($session->initialized)) { + Zend_Session::regenerateId(); + $session->initialized = true; + } + + if (!isset($session->baseUrl)) + $session->baseUrl = BASE_URL; + Zend_Registry::set('session', $session); return $this; } -- GitLab