$_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.










share|improve this question


























    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.










    share|improve this question
























      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.










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 22:51









      curious1

      6,0512179140




      6,0512179140
























          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.






          share|improve this answer





















          • 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











          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',
          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
          });


          }
          });














           

          draft saved


          draft discarded


















          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








          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.






          share|improve this answer





















          • 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















          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.






          share|improve this answer





















          • 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













          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.






          share|improve this answer












          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 11 at 0:07









          Tgr

          20.3k86296




          20.3k86296












          • 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










          • 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


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Xamarin.iOS Cant Deploy on Iphone

          Glorious Revolution

          Dulmage-Mendelsohn matrix decomposition in Python