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?
try just:
session[:MYVAL] = str
-g.
On Mon, Mar 24, 2008 at 7:09 AM, Jason S. [email protected]
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.
email me privately your code, so i can investigate and help you!
-g.
On Mon, Mar 24, 2008 at 3:38 PM, Jason S. [email protected]
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.
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.
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 S. [email protected]