From 0c5434d5e35f13340df5bf5edd22c6d9e9e8379c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 10 May 2016 01:30:22 -0700 Subject: try again with shutdown handler, fix issue #373 (live-pubstream div wasn't present --- boot.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index ebf743274..36fd1f68a 100755 --- a/boot.php +++ b/boot.php @@ -1633,7 +1633,16 @@ function login($register = false, $form_id = 'main-login', $hiddens=false) { * @brief Used to end the current process, after saving session state. */ function killme() { -// register_shutdown_function('shutdown'); + + // Ensure that closing the database is the last function on the shutdown stack. + // If it is closed prematurely sessions might not get saved correctly. + // Note the second arg to PHP's session_set_save_handler() seems to order that shutdown + // procedure last despite our best efforts, so we don't use that and implictly + // call register_shutdown_function('session_write_close'); within Zotlabs\Web\Session::init() + // and then register the database close function here where nothing else can register + // after it. + + register_shutdown_function('shutdown'); exit; } -- cgit v1.2.3