$_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 at 22:51
curious1
6,1362181144
6,1362181144
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 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 at 21:10
add a comment |Â
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 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 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 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 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 at 0:07
Tgr
20.5k86398
20.5k86398
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 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 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 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 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 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 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 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 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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