thinkphp Two-level domain name site session sharing (Single sign-on)

Source: Internet
Author: User
Add the following code to each level two domain name site entry file index.php

Define (' DOMAIN ', ' cdfanfan.com '); Cdfanfan.com change to actual root domain name

The following two lines are for sub-domain sharing session Note that domain needs to be changed to the actual root domain

Ini_set (' Session.cookie_path ', '/');

Ini_set (' Session.cookie_domain ', domain);

Each level two domain name site session storage location changed to shared storage: for example, MySQL

Add ' session_type ' + ' Db ' to each level two domain name site configuration file,

MySQL joins table ocenter_session, table prefix ocenter_ needs to be modified according to environment

CREATE TABLE ' ocenter_session ' (

' session_id ' varchar (255) is not NULL,

' Session_expire ' int (one) is not NULL,

' Session_data ' blob,

UNIQUE KEY ' session_id ' (' session_id ')

)

The above describes the thinkphp two-level domain name site session sharing (Single sign-on), including the aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.