I have the same question.
Putting it into specifics. It seems that when I run the anonymous website visitors report, all the traffic is attributed to one domain. So the question is how to split this out?
Thanks
James
This seems to be an old question, but I'm currently figuring out a solution for our domain change so I may have an answer. It may or may not work for what you're experiencing.
There is a workaround to send a cookie from domain A to domain B when the user visits domain A using this method: How To Set Same Cookie On Different Domains - Subin's Blog
I have not tested it out yet. But if Marketo is tracking on both domains it should be able to give you the URL they are on attributed to the right person.
This won't work for Munchkin for multiple reasons:
I see, I don't quite understand the the difference between an HTTP cookie and the JS Munchkin cookie.
Well, if you do the Redirect Method: Sharing Cookies Across Domains it should be treated as a first party cookie based on what I've seen right? Would that be a plausible solution?
I see, I don't quite understand the the difference between an HTTP cookie and the JS Munchkin cookie.
An HTTP-set cookie is set via HTTP header only, so it
A JS-set cookie
Redirect Method: Sharing Cookies Across Domains it should be treated as a first party cookie based on what I've seen right? Would that be a plausible solution?
That method also uses HTTP-set cookies (ASP Response.Cookies == Cookie: header).
A related approach is possible using JavaScript and IFRAMEd HTML documents, but is much more complex.
Thanks for the explanation. I was wondering if there was a difference between a Munchkin cookie but I couldn't find any documentation from Marketo on it.
The Iframe method that you speak of is this: javascript - Share cookies with other domains - Stack Overflow right? The concern here is that it doesn't work with older browsers...
Anyways, my particular case is that we are switching domains, and we don't want to lose all of our cookie tracking so we're trying to figure out a way to share the cookies from the old domain over to the new one.
The Iframe method that you speak of is this: javascript - Share cookies with other domains - Stack Overflow right? The concern here is that it doesn't work with older browsers...
In line with that method, yep.
But you don't have to worry about older browsers unless you mean IE 7! The note "HTML5 only, obviously." is misleading as IE 8 supports PostMessage (in fact Microsoft invented it before it was added to HTML5).
So based on that, do you think this method could work for preserving our cookie tracking for Marketo from the old domain to the new domain?