![]() |
Code igniter disply blank page on server but works properly on localhost - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Code igniter disply blank page on server but works properly on localhost (/showthread.php?tid=62481) |
Code igniter disply blank page on server but works properly on localhost - tejasmht88 - 07-20-2015 Code igniter disply blank page on server but works properly on localhost RE: Code igniter disply blank page on server but works properly on localhost - mwhitney - 07-20-2015 The blank page indicates an error has occurred, but error reporting is disabled (which is what you want on a production server, but during initial setup you may want to enable error reporting, especially if the error isn't showing up in your logs). More than likely, this is caused by a database configuration issue or possibly a filename issue. RE: Code igniter disply blank page on server but works properly on localhost - wolfgang1983 - 07-21-2015 (07-20-2015, 12:13 AM)tejasmht88 Wrote: Code igniter disply blank page on server but works properly on localhost My guess is that one of your controllers does not have file name or class name as upper case. Check controllers and models Welcome.php class Welcome extends CI_Controller Model_test.php class Model_test extends CI_Model |