Hi All,

On my local development machine, I use php 5 and on the production, it
uses php 4.2

I was having problem when user authenticated, I redirect them to
another controller but somehow the session drop (only in IE).

I did the check inside the app_controller.php file. I tried to print
out the test
pr($this->Session) and found out:

sessioncomponent Object
(
    [_log] =>
    [valid] =>
    [error] =>
    [_userAgent] => f9b8d2d48ef5eefcca002f090fc1b4e9
    [path] => /
    [lastError] =>
    [security] => low
    [time] => 1203089149
    [sessionTime] => 1203125149
    [watchKeys] => Array
        (
        )

    [id] =>
    [__active] => 1
    [__started] =>
    [__bare] => 0



The sessioncomponent  should be SessionComponent. Then I fixed this by
loading the component using the lowercase:
var $components = array('session') instead of
var $components = array('Session')

Does any one know how to get the sessioncomponent to be in the upper
case, SessionComponent?

I use the new cake beta, 1.2

Thanks.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to