Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change my MySQL collation in WAMPSERVER

How can I change my MySQL collation in WAMPSERVER from latin1_swedish_ci to UTF-8 because I think my HTML special characters are getting all messed up

like image 437
stacks Avatar asked Aug 13 '10 02:08

stacks


1 Answers

put in your C:\wamp\bin\mysql\mysql5.5.24\my.ini:

character-set-server=utf8    
collation-server=utf8_general_ci
like image 77
matyig Avatar answered Sep 18 '22 04:09

matyig