Hi. I''m having a strange problem with tweaking some of the session settings. My application should work on several sub-domains (like basecamp: username.clientsection.com) and it works fine for me already, but I have problem with session not being distributed to sub-domain (and even not set at all, after I set up session options). The problem is that I need to set correct session_domain option, so browser will know that this cookie is shared between all domains under the root one. I have following in my environment.rb: session_options = \ ::ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS session_options[:session_key] = "myapp" session_options[:session_domain] = ".mydomain" When I enable this code, session cookie never appears in browser (each time I reload the page with session dump, session key is different [and I *have* cookies enabled :)] ). I''m using Firefox'' cookies viewer, and it''s not there also. I can see it with curl, though: $ curl -I http://mydomain/account/login HTTP/1.1 200 OK Date: Mon, 06 Jun 2005 11:18:52 GMT Server: Apache/1.3.29 (Debian GNU/Linux) mod_fastcgi/2.4.0 PHP/4.3.3 Cache-Control: no-cache Set-Cookie: myapp=d907007ae7ff195296c33156310cf58c; domain=.mydomain; path=/ Content-Type: text/html; charset=koi8-r I don''t have any idea why browser doesn''t like that cookie, maybe you have? Any thouthts highly appreciated! Thanks in advance, -- sdmitry -=- Dmitry V. Sabanin http://sabanin.ru