$_SESSION['mydata'] disappears in MW
I am trying to understand how MW 1.31.1 works. I have the following hook:
$wgHooks['UserLoginComplete'] = 'onUserLoginComplete';
function onUserLoginComplete(User &$user, &$inject_html, $direct)
$_SESSION['mydata'] = 'some data';
It basically stores some data in $_SESSION when a user is successfully authenticated. How can I keep $_SESSION['mydata'] in session as long as I am authenticated.
The puzzling thing to me is when I checked "Keep me logged in" at signin and come back to the wiki site a few hours later. I am still authenticated with the system, but $_SESSION['mydata'] disappears.
mediawiki
add a comment |
I am trying to understand how MW 1.31.1 works. I have the following hook:
$wgHooks['UserLoginComplete'] = 'onUserLoginComplete';
function onUserLoginComplete(User &$user, &$inject_html, $direct)
$_SESSION['mydata'] = 'some data';
It basically stores some data in $_SESSION when a user is successfully authenticated. How can I keep $_SESSION['mydata'] in session as long as I am authenticated.
The puzzling thing to me is when I checked "Keep me logged in" at signin and come back to the wiki site a few hours later. I am still authenticated with the system, but $_SESSION['mydata'] disappears.
mediawiki
add a comment |
I am trying to understand how MW 1.31.1 works. I have the following hook:
$wgHooks['UserLoginComplete'] = 'onUserLoginComplete';
function onUserLoginComplete(User &$user, &$inject_html, $direct)
$_SESSION['mydata'] = 'some data';
It basically stores some data in $_SESSION when a user is successfully authenticated. How can I keep $_SESSION['mydata'] in session as long as I am authenticated.
The puzzling thing to me is when I checked "Keep me logged in" at signin and come back to the wiki site a few hours later. I am still authenticated with the system, but $_SESSION['mydata'] disappears.
mediawiki
I am trying to understand how MW 1.31.1 works. I have the following hook:
$wgHooks['UserLoginComplete'] = 'onUserLoginComplete';
function onUserLoginComplete(User &$user, &$inject_html, $direct)
$_SESSION['mydata'] = 'some data';
It basically stores some data in $_SESSION when a user is successfully authenticated. How can I keep $_SESSION['mydata'] in session as long as I am authenticated.
The puzzling thing to me is when I checked "Keep me logged in" at signin and come back to the wiki site a few hours later. I am still authenticated with the system, but $_SESSION['mydata'] disappears.
mediawiki
mediawiki
asked Nov 10 '18 at 22:51
curious1curious1
6,1662181146
6,1662181146
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Since 1.27 when SessionManager was introduced, MediaWiki does its own session handling. Depending on the value of $wgPHPSessionHandling
it will either ignore PHP sessions completely or try to sync them with MediaWiki sessions. Use MediaWiki's session handling methods instead:
SessionManager::getGlobalSession()->set( 'mydata', 'some data' );
As for data disappearing from the session, it is not meant as a persistent storage mechanism and the long-term behavior is entirely dependent on what storage mechanism is configured for it - check $wgSessionCacheType
and $wgObjectCacheSessionExpiry
.
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244207%2fsessionmydata-disappears-in-mw%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since 1.27 when SessionManager was introduced, MediaWiki does its own session handling. Depending on the value of $wgPHPSessionHandling
it will either ignore PHP sessions completely or try to sync them with MediaWiki sessions. Use MediaWiki's session handling methods instead:
SessionManager::getGlobalSession()->set( 'mydata', 'some data' );
As for data disappearing from the session, it is not meant as a persistent storage mechanism and the long-term behavior is entirely dependent on what storage mechanism is configured for it - check $wgSessionCacheType
and $wgObjectCacheSessionExpiry
.
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
add a comment |
Since 1.27 when SessionManager was introduced, MediaWiki does its own session handling. Depending on the value of $wgPHPSessionHandling
it will either ignore PHP sessions completely or try to sync them with MediaWiki sessions. Use MediaWiki's session handling methods instead:
SessionManager::getGlobalSession()->set( 'mydata', 'some data' );
As for data disappearing from the session, it is not meant as a persistent storage mechanism and the long-term behavior is entirely dependent on what storage mechanism is configured for it - check $wgSessionCacheType
and $wgObjectCacheSessionExpiry
.
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
add a comment |
Since 1.27 when SessionManager was introduced, MediaWiki does its own session handling. Depending on the value of $wgPHPSessionHandling
it will either ignore PHP sessions completely or try to sync them with MediaWiki sessions. Use MediaWiki's session handling methods instead:
SessionManager::getGlobalSession()->set( 'mydata', 'some data' );
As for data disappearing from the session, it is not meant as a persistent storage mechanism and the long-term behavior is entirely dependent on what storage mechanism is configured for it - check $wgSessionCacheType
and $wgObjectCacheSessionExpiry
.
Since 1.27 when SessionManager was introduced, MediaWiki does its own session handling. Depending on the value of $wgPHPSessionHandling
it will either ignore PHP sessions completely or try to sync them with MediaWiki sessions. Use MediaWiki's session handling methods instead:
SessionManager::getGlobalSession()->set( 'mydata', 'some data' );
As for data disappearing from the session, it is not meant as a persistent storage mechanism and the long-term behavior is entirely dependent on what storage mechanism is configured for it - check $wgSessionCacheType
and $wgObjectCacheSessionExpiry
.
answered Nov 11 '18 at 0:07
TgrTgr
20.5k86498
20.5k86498
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
add a comment |
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
Tgr, thanks for the info. I tried to make "sync them with MediaWiki sessions", but no success. Would you mind posting the settings to make it work on Windows machine? Again, thanks!
– curious1
Nov 12 '18 at 16:25
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
The default settings should keep backwards compatibility with $_SESSION. Your problem is more likely session expiry - as I said "Keep me logged in" does not make the sessions longer, it just detaches the login status from the session. You probably want longer sessions; see the links at the end of my answer. With the default configuration you probably just need to increase $wgObjectCacheSessionExpiry.
– Tgr
Nov 13 '18 at 21:10
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244207%2fsessionmydata-disappears-in-mw%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown