I'm trying to share a cookie between www.example.com and admin.other.example.com I've being able to make it work with other.example.com, but there's no way to access the sub-sub-domain
Edit: I handle subdomains by defining the cookie domain as .example.com (note the first dot)
You can only share cookies between a domain and its own subdomains. For example:
example.com
can be accessed bywww.example.com
andfoo.bar.example.com
www.example.com
can be accessed byfoo.www.example.com
but not bybar.example.com