CodeIgniter Forums
Loading the database library causes a freeze - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Loading the database library causes a freeze (/showthread.php?tid=35926)

Pages: 1 2


Loading the database library causes a freeze - El Forum - 04-07-2011

[eluser]InsiteFX[/eluser]
I run Windows 7 X64 Pro with XAMMP and have no problems at all
Code:
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_unicode_ci';

Also check your database and make sure it is set to utf8_general_ci

I use utf8_unicode_ci all the way around!

MySQL defaults to latin1_swedish_ci unless you go in and change it manually!

InsiteFX