White screen of death!

后端 未结 11 639
暗喜
暗喜 2020-12-06 13:55

After debugging a codeigniter app that were installed into a new development environment, I have started to freak out when seeing white screens with nothing more available.

11条回答
  •  离开以前
    2020-12-06 14:10

    The best thing is to have a checklist of the common problems that could cause this since CI's default is already

    error_reporting(E_ALL);
    
    1. Same name controllers and models
    2. using reserved words as methods

    list goes on..

提交回复
热议问题