I have 2 sub-domains: 'secure' and 'downloads' of the same domain: "10.0.50.18".
on 'downloads' I set a cookie using jQuery like this:
$.cookie("width", w, {domain: "10.0.50.18"});
on 'secure', i am trying to read that cookie like this:
$width = $_COOKIE["width"];
yet it is not working.
can anyone help please? Thank you!