I've worked through the tutorial on http://blog.phpdeveloper.org/?p=65
using Solar_Auth_Adapter_Sql, and I've set a session like:
$session = Solar::factory('Solar_Session',
array('class' => 'Vendor_App_Login')
);
$session->store['uid'] = $auth->uid;
Should I check the session in the bootstrap?
Thanks!
Sean