I'm trying to setup my site on a production server, and it's basically crashing at line 291 in /system/core/CodeIgniter.php:
//instantiate the requested controller
// Mark a start point so we can benchmark the controller
$BM->mark('controller_execution_time_( '.$class.' / '.$method.' )_start');
$CI = new $class();
The class is 'auth' (from the tank_auth library), so it's crashing on '$CI = new auth();'
It doesn't produce an error (why??), just displays a blank page. This all works fine locally.
Has anyone had any similar issues?