in reply to Re^7: Cookie->fetch problem
in thread Cookie->fetch problem

mia culpa, mia culpa

Cookie with no name solved. It was me with javascript on index.html

With this line commented out it takes you to ino page on cookies not enabled. Gone for now.

//**************************/ // Check For Cookies Enabled //**************************/ <script type="text/javascript"> document.cookie = "Cookie-Enabled?" <-- This is culprit--> function CheckForCookieEnabledBrowser(){ if ( document.cookie == "" ) { <!-- var target = "http://" + location.hostname + "/jala_cookie_msg +.htm"; <!-- http://www.whatarecookies.com/enable.asp/--> // alert("entered CheckForCookeEnabledBrowser = " + document.cooki +e ); var target = "http://www.whatarecookies.com/enable.asp"; window.location.href=target; } else { // alert(" cookies enabled - move on"); // checkCookie(); } } </script>