php - Using Zend Framework Inside Drupal -
php - Using Zend Framework Inside Drupal -
i have issue project working on, whole application runs drupal 6 install, , bootstrapping zend framework application pull out info need (which create available in various views via module create).
i have bulk of working correctly, issue having sessions, actual error getting follows :-
php fatal error: uncaught exception 'zend_session_exception' message 'session has been started session.auto-start or session_start()'
which think happening because drupal setting session , zf trying setup own sessions , clashing. there way can override/extend default zend session handling allow utilize drupal session api?
thanks
rich
are going storing info in zend session? if not, away starting zend session completely, or @ to the lowest degree conditionally skip starting zend session if session has been started.
if do, not able start or utilize zend_session* related functions (zend_session, zend_session_namespace) if session started session_start(). there not appear way around this.
instead, zend application, can utilize $_session superglobal anywhere need utilize session data.
this won't of much help, useful reference starting session in zend.
php zend-framework drupal drupal-6
Comments
Post a Comment