我已将codeigniter脚本从开发服务器移动到生产服务器(
相同的服务器,只是不同的域,所以没有PHP /数据库/ apache配置/或相关问题
)
我已经能够登录一个地方/ application / logs文件夹 我已经尝试了其他所有日志(启用php日志等) 似乎什么都没有告诉我这是什么问题,是什么导致白屏)
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
如果有人有任何想法,请告诉我 到目前为止我有
在index.php
中添加了开发服务器
谷歌搜索,并尝试其他一切以显示一些错误,直到现在没有任何工作。
我现在有点想法了。
现在在服务器中有一些条目,但它们似乎比实际错误更多的是黑客攻击。
2016-06-17 03:05:04.050 [INFO] [124.253.119.242:14578]找不到档案[/home/miverali/public_html/domain.com/404.shtml]
2016-06-17 03:05:04.050 [INFO] [124.253.119.242:14578]找不到档案[/home/miverali/public_html/domain.com/application/index.php]
2016-06-17 02:59:32.621 [INFO] [178.63.13.15:27365]找不到档案[/home/miverali/public_html/domain.com/404.shtml]
2016-06-17 02:59:32.621 [INFO] [178.63.13.15:27365]找不到档案[/home/miverali/public_html/domain.com/robots.txt]
2016-06-17 02:55:47.575 [INFO] [5.9.73.227:50935]找不到档案[/home/miverali/public_html/domain.com/404.shtml]
2016-06-17 02:55:47.575 [INFO] [5.9.73.227:50935]找不到档案[/home/miverali/public_html/domain.com/robots.txt]
答案 0 :(得分:1)
由于数据库驱动程序没有响应,我遇到了这个问题。
转到application/config/database.php
如果 codeigniter 3.0 - (小于3.0)
$db['default']['dbdriver'] = ''; # Change to mysqli
如果 codeigniter 3.0 + (大于3.0)
'dbdriver' => '', # Change to mysqli
答案 1 :(得分:0)
当我在寻找答案时,我想在搜索结果中排在首位...
当我出现白屏时,我在Chrome的控制台中查看了答案。只是这个错误:
Failed to load resource: net::ERR_CONTENT_DECODING_FAILED
解决方案是转到配置文件(/application/config/config.php
)并找到$config['compress_output']
。在我的情况下,将其设置为TRUE-更改为FALSE,您可能会选择...