Is there a cap to how many cookies you can set within a script?
I have a script where I am setting 180 different cookies, all with unique names. The script sets the first 101 cookies just fine but on cookie 102 and the rest it does not set them. So I did this test:
Ran the script as is and:
cookie 100 - got set
cookie 101 - got set
cookie 102 - did not get set
cookie 103 - did not get set
Removed cookie 101 and ran script:
cookie 100 - got set
cookie 102 - got set
cookie 103 - did not get set
Any idea on this??