white screen of death with codeigniter

I have move a codeigniter script from a development server to production server (

same server, just different domains, so no PHP/database/apache config/ or related issues

)

I have been able to get log in just one place /application/logs folder I have tried everything else for logs ( enabled php logs etc etc.) nothing seems to show me what is the issue, what's causing white screen)

DEBUG - 2016-06-16 15:47:48 --> Config Class Initialized

DEBUG - 2016-06-16 15:47:48 --> Hooks Class Initialized

DEBUG - 2016-06-16 15:47:48 --> Utf8 Class Initialized

DEBUG - 2016-06-16 15:47:48 --> UTF-8 Support Enabled

DEBUG - 2016-06-16 15:47:49 --> URI Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Router Class Initialized

DEBUG - 2016-06-16 15:47:49 --> No URI present. Default controller set.

DEBUG - 2016-06-16 15:47:49 --> Output Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Security Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Input Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Global POST and COOKIE data sanitized

DEBUG - 2016-06-16 15:47:49 --> Language Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Loader Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Helper loaded: url_helper

DEBUG - 2016-06-16 15:47:49 --> Helper loaded: file_helper

DEBUG - 2016-06-16 15:47:49 --> Database Driver Class Initialized

DEBUG - 2016-06-16 15:47:49 --> Session Class Initialized

If anyone has any idea, please let me know so far I have

Added development server in index.php Googled, and tried everything else for some error to show up, nothing worked till now.

I am kinda out of ideas for now.

Got some entries in server now, but they appear to be more of hack attempts than actual errors.

2016-06-17 03:05:04.050 [INFO] [124.253.119.242:14578] File not found [/home/miverali/public_html/domain.com/404.shtml]

2016-06-17 03:05:04.050 [INFO] [124.253.119.242:14578] File not found [/home/miverali/public_html/domain.com/application/index.php]

2016-06-17 02:59:32.621 [INFO] [178.63.13.15:27365] File not found [/home/miverali/public_html/domain.com/404.shtml]

2016-06-17 02:59:32.621 [INFO] [178.63.13.15:27365] File not found [/home/miverali/public_html/domain.com/robots.txt]

2016-06-17 02:55:47.575 [INFO] [5.9.73.227:50935] File not found [/home/miverali/public_html/domain.com/404.shtml]

2016-06-17 02:55:47.575 [INFO] [5.9.73.227:50935] File not found [/home/miverali/public_html/domain.com/robots.txt]


I have face this issue because of the DB Driver is not responding.

go to application/config/database.php


If codeigniter 3.0- ( less than 3.0)

$db['default']['dbdriver'] = ''; # Change to mysqli

If codeigniter 3.0+ ( greater than 3.0)

'dbdriver' => '', #  Change to mysqli
链接地址: http://www.djcxy.com/p/69190.html

上一篇: PHP的死亡白屏

下一篇: 与codeigniter死亡的白色屏幕