dotpay / drupalcommerce

drupalcommerce
0 stars 2 forks source link

Duplicate session destroys services in Drupal #4

Closed mskrs closed 7 years ago

mskrs commented 7 years ago

session_start() in bootstrap.php overwrites default session from Drupal. That causes sometimes users can not login - in my case it had strong collision with Services ( https://www.drupal.org/project/services ), mobile clients were not able to perform any queries after login. Session was closed due to unclear reason.

I think those lines should be removed, because Drupal keeps the session itself.

tbajorek commented 7 years ago

We changed that file and now we believe that all will be ok. Please check the new version of this plugin.

mskrs commented 7 years ago

Thank you, perfect