What is the correct way to bootstrap Drupal with Kohana 3?
- by Dave
Hi,
I am trying to implement single sign on between an existing Drupal site a Kohana 3 based webapp. Ideally I would like to load Drupal's session information into $GLOBALS using the bootstap:
require_once('../includes/bootstrap.inc');
drupal_bootstrap(DRUPAL_BOOTSTRAP_SESSION);
A post on the Kohana forum suggested that this should be placed in…