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 24.03.2008 06:23
on 24.03.2008 09:16
try just: session[:MYVAL] = str -g. On Mon, Mar 24, 2008 at 7:09 AM, Jason Southwell <jason@southwell.net>
on 24.03.2008 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 24.03.2008 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 26.03.2008 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 26.03.2008 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.
on 26.03.2008 09:29
hmm... which browser are you using... try to use 0.0.0.0 127.0.0.11 localhost to access your app... try to use firefox and 0.0.0.0:9000 to access your app and tell me if it works... -g. On Wed, Mar 26, 2008 at 6:55 AM, Jason Southwell <jason@southwell.net>