White screen of death codeigniter Error Reporting ON
There are several of these post on stack overflow but none of them have helped me yet. I am running a CodeIgniter install and I am getting a white screen of death on every function I try and run and it errors out with a white screen of death. So just so everyone knows errors are on. I have php.ini set to E_ALL, and DISPLAY_ERRORS = TRUE and I also have
error_reporting(E_ALL);
ini_set('display_errors',TRUE);
Pasted in the index.php and the controller itself as I have read in several SO posts. Here is the issue, I have a controller called video and a function called test that var dumps and echos a bunch of stuff. So my url is Mydomain.com/index.php/video/test and I just get a white screen. I assume the routes are working because if I change it to Mydomain.com/index.php/somethingelse/somethingelse it breaks and gives me a 404. Does anyone know how I can get around this white screen of death? No errors are being shown anywhere, none of my echos are being output and none of my var dumps and its driving me insane!
Edit to show video controller
<?php
class Video extends MY_Controller{
public function test(){
echo "do something";
var_dump("anything");
}
}
链接地址: http://www.djcxy.com/p/69208.html
上一篇: MySQL中的表名是否区分大小写?