I am trying to set up my site on a production server and basically crash on 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 breaks down into '$ CI = new auth ();'
It does not cause an error (why?), It simply displays a blank page. It all works fine.
Has anyone had similar problems?
source share