$_SESSION['mydata'] disappears in MW
up vote
0
down vote
favorite
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 |
up vote
0
down vote
favorite
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 |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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,0662179140
6,0662179140
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
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
up vote
1
down vote
accepted
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 |
up vote
1
down vote
accepted
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 |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
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.4k86297
20.4k86297
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 |
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