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?
I had the same problem, I fixed that by installing the php-mysql package:
$ sudo yum install php-mysql
Have you checked if error reporting is enabled? If not, try adding
ini_set('display_errors',1);
error_reporting(E_ALL);
to the beginning of index.php.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With