ndelrio
Not too much to say...
Offline
Posts: 1
|
 |
« Reply #1 on: June 24, 2008, 02:01:02 PM » |
|
I had the same problem, and after a few days investiganting this, i could solve the problem.
I?ve changed two lines in class/include. php
at line 86:
setcookie(session_name(), session_id(), time() + 3600, ((strpos($_SERVER['HTTP_USER_AGENT'], "MSI E 6")!== false)? "\\" : "/"))
i change this for:
if (strpos($_SERVER['HTTP_USER_AGENT'], "MSIE 7")!== false) { setcookie(session_name(), session_id(), time() + 3600, ((strpos($_SERVER['HTTP_USER_AGENT'], "MSIE 7")!== false)? "\\" : "/")); }else{ setcookie(session_name(), session_id(), time() + 3600, ((strpos($_SERVER['HTTP_USER_AGENT'], "MSIE 6")!== false)? "\\" : "/")); }
this solve my problem.
bye!
|