Incompatible changes
Drupal 6.17 introduces the following incompatible changes.
Session handling
Drupal 6.17 changes the way session cookies are handled. Most people don't need to have this setting set, but if you have an explicit $cookie_domain
set in settings.php
, verify that it is set to a sensible value:
'example.com'
if you want sessions to apply to theexample.com
domain, and none of its sub-domains (especially notwww.example.com
),'www.example.com'
if you want sessions to apply to thewww.example.com
domain, and none of its sub-domains nor parent domains (especially notexample.com
),'.example.com'
if you want sessions to apply to theexample.com
domain and all its subdomains (www.example.com
,mydomain.example.com
, etc.).
评论