Results 1 to 3 of 3

Thread: Get session

  1. #1
    wisew is offline Senior Member
    Join Date
    May 2009
    Posts
    23

    Default Get session

    Is there any session for userid and a session to check if logged in?

  2. #2
    gsrikanth's Avatar
    gsrikanth is offline Sugar Community Member
    Join Date
    Dec 2008
    Location
    Hyderabad
    Posts
    49

    Default Re: Get session

    Hi,

    $current_user is the object that holds the current user's details.
    Use print_r() to get the full details of current user.

  3. #3
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Get session

    Quote Originally Posted by wisew View Post
    Is there any session for userid and a session to check if logged in?
    You can check the table tracker, order by date_modified desc.
    The fields:
    user_id: represents the id of user;
    session_id: represents the login session of such user;

    Have a look at the config.php, you will see the attribute session_dir.
    The final session dir is:

    PHP Code:
    $session_dir = ($sugar_config['session_dir'] == '') ? ini_get("session.save_path") : $sugar_config['session_dir']; 
    The folder in $session_dir variable stores all active sessions for system users, and the session file name is: 'session_' . <table_tracker.session_id>.
    If you delete the file representing the session for a given user so you will disconnect such user.

    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 4
    Last Post: 2010-05-21, 10:27 PM
  2. Replies: 9
    Last Post: 2009-07-27, 11:18 AM
  3. Replies: 5
    Last Post: 2007-11-23, 06:12 PM
  4. Replies: 8
    Last Post: 2007-11-23, 01:30 PM
  5. Replies: 4
    Last Post: 2005-12-03, 05:12 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •