I investigated my case.
Problem is with option (php.ini): session.auto_start=1
This brokes work with PHP session in Drupal.
---
I introduce short workaround:
- at file /includes/bootstrap.inc after line
case DRUPAL_BOOTSTRAP_SESSION:
insert this code
if ( session_id() ) {
session_write_close();
}BTW, the same workaround I formerly did for Joomla :-)


