I have several shops on 2-3 subdomains (shop1.site.com, shop2.site.com) that stores cart item data to their session 'items'.
Is it possible for me, on the main domain (site.com) to retrieve the session from example shop1.site.com?
I have tried the setting ini_set("session.cookie_domain", "shop1.site.com");
before testing with var_dump($_SESSION);
but this does not work.