i have two domain,
first one is named "passport.my-site.com", and it has a logout action in which destroy the session.
the second is named "goods.my-site.com", when i logout from "goods.my-site.com" (i use post ajax to logout, and nginx has add_header Access-Control-Allow-Origin *;
), it does execute the logout action in "passport.my-site.com", and the result from $this->session->destroy()
is true, BUT after i refresh the page, it still displays login status.
HELP!