No cookie session
Categories
Component ID
1998840
Component name
No cookie session
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
Helps you bypass cookie based session management on your Drupal site.
This is good approach for embedded sites, for example Facebook iframe based embedded applications which will allow you to implement fully functional Drupal site within iframe avoiding problems with browser cross-domain cookie restrictions.
In order to make this module work properly and provide fully functional Drupal site,a couple changes have to be introduced within Drupal core JS:
- site/misc/autocomplete.js: within $.ajax function call, url parameter should be:
url: db.uri + '/' + Drupal.encodePath(searchString)+window.location.search - site/misc/ajax.js: within ajax.options config, url field should be:
url: ajax.url+window.location.search
If you use any JavaScript based navigation from your site or ajax calls, you should use ncs_path and ncs_ajax functions which will add proper page arguments to your page path.
