Codeigniter shows blank page with no error

前端 未结 4 390
小鲜肉
小鲜肉 2021-01-13 11:12

I have one codeigniter app which was working fine on localhost. When I uploaded the same on server, it shows blank page & returning no error. I have also used approx. al

4条回答
  •  说谎
    说谎 (楼主)
    2021-01-13 11:36

    in index.php file located in your base check

    define('ENVIRONMENT', 'development');
    

    if it's not then define it same.

    Or you can write

    error_reporting(E_ALL);
    

    At end of this file, definitely it should work.

提交回复
热议问题