About sessions in modperl

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sasimca007
    New Member
    • Sep 2007
    • 129

    About sessions in modperl

    Hello friends,
    How to delete session id from browser memory in Modperl?
  • pavanponnapalli
    New Member
    • May 2008
    • 51

    #2
    hi,
    Use Apache::Session Manager module.

    The syntax is as under:

    Code:
          sub handler 
         {
          my $r = shift;
          ...
    
           Apache::SessionManager::destroy_session($r);
    
          ...
        }
    Regards,
    Pavan kumar Ponnapalli
    Last edited by numberwhun; Oct 22 '08, 03:21 PM. Reason: Please use code tags!

    Comment

    • Icecrack
      Recognized Expert New Member
      • Sep 2008
      • 174

      #3
      Originally posted by pavanponnapalli
      hi,
      Use Apache::Session Manager module.

      The syntax is as under:

      Code:
            sub handler 
           {
            my $r = shift;
            ...
      
             Apache::SessionManager::destroy_session($r);
      
            ...
          }
      Regards,
      Pavan kumar Ponnapalli
      Pavan If you are going to help people fix your code tags or use the Default Button


      Thanks
      Charlie

      Comment

      • numberwhun
        Recognized Expert Moderator Specialist
        • May 2007
        • 3467

        #4
        I agree Pavan. The code tags closing tag has a / and not a %. You need to look at the example provided in the Reply Guidelines box next to your reply Message window. It shows you exactly how it should be.

        Regards,

        Jeff

        Comment

        Working...