<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1026247" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1026247</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1160588</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: bares bones minimum to set the cookies&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I might have got the wrong end of the stick here, but some browsers have issues if you don&#039;t provide values for ALL of the cookie fields (name,value,expire,path,domain,secure). You only seem to be setting four of these values.&lt;/p&gt;
 </description>
     <pubDate>Wed, 20 Oct 2004 12:26:31 +0000</pubDate>
 <dc:creator>andy206uk</dc:creator>
 <guid isPermaLink="false">comment 1160588 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1160304</link>
    <description> &lt;p&gt;You many want to find out if they are using a fire wall. If so, it could be the settings that they are using.. For instance norton use to prompt me if I would accept or deny a cookie and I could set it where never to ask me again and no do not accept cookies..&lt;/p&gt;
 </description>
     <pubDate>Mon, 11 Oct 2004 17:00:12 +0000</pubDate>
 <dc:creator>reciprocal_link</dc:creator>
 <guid isPermaLink="false">comment 1160304 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1158562</link>
    <description> &lt;p&gt;Thanks so much for the advice Busy!&lt;br /&gt;
I&#039;ve been offline so I haven&#039;t been able to forward that to him yet.&lt;br /&gt;
Hopefully this will get it.&lt;/p&gt;
&lt;p&gt;I keep suggesting to everyone that they need to ditch IE, but so far it&#039;s not making a big difference. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 10 Sep 2004 14:34:01 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1158562 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1158490</link>
    <description> &lt;p&gt;Just check they have emptied their Temporary Internet Folder lately, if that is full can cause weird things to happen sometimes&lt;/p&gt;
 </description>
     <pubDate>Thu, 09 Sep 2004 01:33:16 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1158490 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1158487</link>
    <description> &lt;p&gt;Hmmmmm... well he wrote back and said that didn&#039;t work for him. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I&#039;m not sure how that system decides which cookies to accept and which one not to.  On Safari all I have to do is decide if I want to accept cookies always, only first party cookies or never... that to me makes sence.  &lt;/p&gt;
&lt;p&gt;I&#039;m using the bares bones minimum to set the cookies.&lt;br /&gt;
On the forum page (which is perl) I have The script check the user name and password, make sure their subscription hasn&#039;t run out (because the forum is part of a subscribed service) and check to see if they want to stay logged in or log out at the end of each session.&lt;br /&gt;
All it does to set the cookie...&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;$SetCookies1 = cookie(-name =&amp;gt; &amp;quot;$cookieusername&amp;quot;,&lt;br /&gt;				-value =&amp;gt; &amp;quot;$username&amp;quot;,&lt;br /&gt;				-path =&amp;gt; &amp;quot;/&amp;quot;,&lt;br /&gt;				-expires =&amp;gt; &amp;quot;$ck{&amp;#039;len&amp;#039;}&amp;quot;);&lt;br /&gt;	$SetCookies2 = cookie(-name =&amp;gt; &amp;quot;$cookiepassword&amp;quot;,&lt;br /&gt;				-value =&amp;gt; &amp;quot;$password&amp;quot;,&lt;br /&gt;				-path =&amp;gt; &amp;quot;/&amp;quot;,&lt;br /&gt;				-expires =&amp;gt; &amp;quot;$ck{&amp;#039;len&amp;#039;}&amp;quot;);&lt;/code&gt;&lt;/div&gt;&#039; &lt;/p&gt;
&lt;p&gt;The php page is even simpler since I&#039;m not looking anything up in a database.&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;$stylename = $_REQUEST[&amp;#039;stylename&amp;#039;];&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; setcookie(&amp;quot;KCstylesheet&amp;quot;, &amp;quot;$stylename&amp;quot;, time() + (365 * 86400), &amp;#039;/&amp;#039;);&lt;br /&gt;print &amp;quot;&amp;amp;lt;script&amp;amp;gt; window.location.replace(\&amp;quot;layouts.php\&amp;quot;);&amp;amp;lt;/script&amp;amp;gt;&amp;quot;;&lt;/code&gt;&lt;/div&gt;&#039; &lt;/p&gt;
&lt;p&gt;Sooooo is it a setting or security issue with this customer&#039;s system or is there something I should add to the cookie?&lt;/p&gt;
&lt;p&gt;I&#039;d appreciate any help!&lt;br /&gt;
Thanks!&lt;/p&gt;
 </description>
     <pubDate>Wed, 08 Sep 2004 21:39:25 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1158487 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1158478</link>
    <description> &lt;p&gt;Thanks so much for the advice Phil!&lt;/p&gt;
&lt;p&gt;I&#039;ll send it along to him and see what he says.&lt;/p&gt;
&lt;p&gt;Guess you can tell I know squat about Windows or IE6. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 08 Sep 2004 15:33:12 +0000</pubDate>
 <dc:creator>KarenArt</dc:creator>
 <guid isPermaLink="false">comment 1158478 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/computer-help/problem-cookies-ie6#comment-1158477</link>
    <description> &lt;p&gt;Get him to goto Tools &amp;gt; Internet Options &amp;gt; Privacy and click the advanced button&lt;/p&gt;
&lt;p&gt;Select the &quot;Override automatic cookie handling&quot; and ask him to try adjusting those levels.  Also try making sure that &quot;Always allo session cookies&quot; is ticked.  By trial and error he should then find a safe setting for himself...&lt;/p&gt;
 </description>
     <pubDate>Wed, 08 Sep 2004 15:23:37 +0000</pubDate>
 <dc:creator>openmind</dc:creator>
 <guid isPermaLink="false">comment 1158477 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
