eXtplorer not logging out
Added by A R about 9 years ago
eXtplorer works just as expected; but when I hit the Logout button, it immediately jumps back to the overview window without logging off.
I'm using version 2.1.8
Cheers
Replies (1)
RE: eXtplorer not logging out - Added by Jean Bertin UWARUGABA about 8 years ago
hello,
after many hours on this issue i find a temporary solution :
1) Open with text editor the file ../include/functions.php
2) Go to the function :
function logout() {
session_destroy();
session_write_close();
header("Location: ".$GLOBALS["script_name"]);
}
and changes like that :
function logout() {
session_destroy();
session_write_close();
header("Location:index.php");
}
KR,