CodeIgniter Blank Page

前端 未结 6 1131
深忆病人
深忆病人 2021-01-16 01:43

n00b here. After searching the forums I have not yet come across this problem as I am experiencing it.

I have a CI site that was working correctly until about three

6条回答
  •  借酒劲吻你
    2021-01-16 02:32

    First Try to active error handlers for displaying of errors for addittional info to post here what error is occuring..

     // change settings for error handler to show errors
            // $this setup is used for checking errors for development to be shown.... 
            ini_set('display_errors', 1);
            error_reporting(E_ALL);
    

    by the way if your using CI version 2 higher you can see it in its index.php file an configuration for displaying error also.

    define('ENVIRONMENT', 'development'); //just set up environtment to development
    

提交回复
热议问题