I have uploaded codeigniter file in my linux server using php version 5.5. I got issue on application\config\autoload.php file.
$autoload['libraries'] = array(); //default code
//$autoload['libraries'] = array('database');
When i run the program using default code. program runs fine. But when i load database library, we didn't get any error or output. it shows blank page.
you can check here.
Sample Code:
class Test extends CI_Controller {
function show() {
echo 'methos call';
}
}
This program runs in my local without issue. Is that server problem or codeignitor issue.
Thanks