Welcome Guest, Not a member yet? Register   Sign In
IE Bug
#8

[eluser]louisl[/eluser]
One thing to consider is the path, have you tried setting the path to "/"?
eg:-
Code:
$cookie = array(
                       'name'   => 'uid',
                       'value'  => 'xyz',
                       'expire' => (3600*3),
                       'domain' => '',
                       'path'   => '/',
                       'prefix' => '',
                   );
    
                set_cookie($cookie);
Then retrieve it with:-
Code:
$cookie_val = get_cookie('uid');

I've found seo friendly urls can cause cookies problems because php thinks it's in a different location than it actually is.

If you set a cookie at www.mysite.com/login/ the cookie path will be /login.


Messages In This Thread
IE Bug - by El Forum - 03-03-2011, 12:02 PM
IE Bug - by El Forum - 03-03-2011, 02:36 PM
IE Bug - by El Forum - 03-03-2011, 03:43 PM
IE Bug - by El Forum - 03-03-2011, 05:07 PM
IE Bug - by El Forum - 03-03-2011, 06:25 PM
IE Bug - by El Forum - 03-03-2011, 09:56 PM
IE Bug - by El Forum - 03-04-2011, 04:13 AM
IE Bug - by El Forum - 03-04-2011, 05:44 AM
IE Bug - by El Forum - 03-04-2011, 11:25 AM
IE Bug - by El Forum - 03-04-2011, 04:57 PM
IE Bug - by El Forum - 03-04-2011, 06:25 PM
IE Bug - by El Forum - 03-04-2011, 07:05 PM
IE Bug - by El Forum - 03-30-2011, 08:55 PM



Theme © iAndrew 2016 - Forum software by © MyBB