Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
2016-09-14 11:19:01.853 ** ERROR ** ERROR **
2016-09-14 11:19:01.862 ** ERROR ** on file 'D:IntranethtdocsprojeqtormodelAudit.php' at line (219)
2016-09-14 11:19:01.871 ** ERROR ***** cause = session_destroy(): Session object destruction failed
WIN7/64b - Apache 2.4 / PHP7.0 / Firefox 48.0.2 / Projeqtor 5.5.1
Go to this file : D:IntranethtdocsprojeqtormodelAudit.php
and replace the ( line 219 )
@session_destroy();
by :
unset($_SESSION);
Hi,
Patch has been applied for test (not sure it will fix all cases).
Will be deployed in V5.5.2.
Please report if patch 5.5.2 (when available) fixes the issue in your case.
@abenzakour
unset($_SESSION); is not at all equivalent to @session_destroy();
It only empties the SESSION array.
What we need here is to remove the session cookie, what is done with session_destroy(); 😉