I encouter a problem since this morning, after I migrated my website from my local machine to the server.
To replace the context, I developed a website with the framework CodeIgniter, and everything before the migration was working fine.
After a long research, it seems that when i put this :
$autoload['libraries'] = array('database');
I have a blank page on my website, without any php/ci errors in the logs.
And if I let this :
$autoload['libraries'] = array();
The website is working correctly (well, I can't log in but I don't have a blank page).
I added the mysql.so in the php.ini file, but it didn't help me neither.
Does someone already encountered this problem ? How can you solved it please ?
Thanks !
B