First post to this list. I'm running Nitro .50 as installed from the Gems posted here recently. When I set a session variable via @context.session[:MYVAR] = str it is always nil on subsequent requests. I've also tried dropping the @context but still nil. Is there any direction on how to properly use session variables?
on 2008-03-24 06:23
on 2008-03-24 09:16
try just: session[:MYVAL] = str -g. On Mon, Mar 24, 2008 at 7:09 AM, Jason Southwell <jason@southwell.net>
on 2008-03-24 14:40
> session[:MYVAL] = str > I've also tried dropping the @context but still nil. As I said, i tried that but it is still nil. The session does not seem to persist between page hits.
on 2008-03-24 15:05
email me privately your code, so i can investigate and help you! -g. On Mon, Mar 24, 2008 at 3:38 PM, Jason Southwell <jason@southwell.net>
on 2008-03-26 05:31
>> I've also tried dropping the @context but still nil.
Setting the cookies hash directly doesn't work either.
Could this have something to do with using YUI on the client side? I
wouldn't think it would overwrite any cookies though.
on 2008-03-26 05:55
One more thing. If I set the cookie via YUI in the browser, I can read it in the cookies property server-side. However, nothing set in the cookies property ever makes it to the client.