I get the problem this morning after I transferred my website from my local machine to the server.
To replace the context, I designed a website with a CodeIgniter framework and thatβs all before the migration worked fine.
After a long study, it seems that when I put this:
$autoload['libraries'] = array('database');
I have a blank page on my site, no php / ci errors in logs.
And if I let this:
$autoload['libraries'] = array();
The website is working correctly (well, I cannot log in, but I do not have a blank page).
I added mysql.so to the php.ini file, but that didn't help me either.
Has anyone already encountered this problem? How can you solve this?
Thanks!
IN
source share