YahooArchive / boomerang

End user oriented web performance testing and beaconing
http://lognormal.github.com/boomerang/doc/
Other
1.18k stars 447 forks source link

Cannot set cookie in IE #28

Closed solarice closed 12 years ago

solarice commented 12 years ago

I'm getting the following error in IE:

LOG: boomerang.rt: [error] cannot set start cookie

I found that commenting out these lines resolves the issue:

            ((typeof domain !== "undefined") ? "; domain="
                    + (domain !== null ? domain : impl.site_domain ) : "") +

in the debugger: impl.site_domain = "localhost"

Any suggestions?

bluesmoon commented 12 years ago

boomerang isn't designed to work against localhost. You need a fully qualified domain name. Create an alias for your host in /etc/hosts and use that instead. Perhaps something like localhost.localdomain would work.