DebugBar Forums
 
 HOME 
 DOWNLOAD 
 BUY 
 DOC / WIKI 
 FORUM 
 CONTACT 
Stay tuned : rss feed

Forum Home


advanced search

You are not logged in.

Announcement

Forums are now closed as we moved them to google groups. You can use the following Google Groups to discuss about DebugBar and IETester products:

#1 2008-05-29 16:51:35

Kryptiq DevDude
New member

Can't access cookes in IE6

I'd love to use this fantastic tool, but not allowing access to cookies in IE6.  I've tried setting the browser option to maximum support for cookies and JavaScript, but nothing seems to work.

I also had this issue when trying to use similar "MultipleIEs" tool.

Here's my setup:

Platform:  WindowsXP
Browser installed:  IE7
IETester Verstion: v0.2.2

Offline

 

#2 2008-05-29 16:52:47

fabrice
DebugBar Support

Re: Can't access cookes in IE6

Hi,

Do you have , or can you provide a sample page with the problem ? A very basic page is enough, in order to have the bug and try to correct it.

Thanks.

Offline

 

#3 2008-05-29 17:51:44

Kryptiq DevDude
New member

Re: Can't access cookes in IE6

Our app uses JavaScript to test the ability to set cookies.  Here's an example page:

--------------------

<html>
<head><title>JS Cookie Access Test</title></head>
<body>
    <script type="text/javascript">
        function setJsTesterCookie()
        {
              createCookie("jsTesterCookie", "true", null, "mycompanysdomain.com" );
        }
        function createCookie(name,value,days,domain)
        {
              if (days)
              {
                var date = new Date();
                date.setTime(date.getTime()+(days*24*60*60*1000));
                var expires = "; expires="+date.toGMTString();
              }
              else var expires = "";
              var cookie = name+"="+value+expires+"; path=/;"
              if (domain != null)
              {
                cookie += "domain="+domain;
              }
              document.cookie =  cookie;
        }
        setJsTesterCookie();
    </script>
</body>

--------------------

Our application, which uses ASP.NET, can then check for the existence of the test cookie using this code:

--------------------

if (Context.Request.Cookies["jsTesterCookie"] == null)
{
    Context.Response.Redirect("JsCookieWarning.aspx", true);
}

--------------------

Offline

 

#4 2008-05-29 19:12:48

fabrice
DebugBar Support

Re: Can't access cookes in IE6

Thanks ! I can reproduce it on my system.

The bug appears only on the IE6 instance.
IE5.5, IE7 and IE8 are handling correctly the cookie.

I will try to correct that on a future release.

Offline

 

#5 2009-03-31 14:58:35

kilsey
New member

Re: Can't access cookes in IE6

Any news on this?  I've noticed that machine administrators seem to avoid the problem, whereas limited users run into it... (at least in our company)

Offline

 

#6 2009-03-31 15:07:40

fabrice
DebugBar Support

Re: Can't access cookes in IE6

No news so far on this problem.

Offline