Hello all!
I'm doing some tests with vtiger on SME Server, and realize that I need the mysql data base to use UTF-8.
Somehow, it doesn't seem to do that when I create the data base using the following commands:
[root@sme #] mysql -u root
> create database vtiger_db;
> grant all privileges on vtiger_db.* to 'vtigercrm'@'localhost' identified by 'PASSWORD';
> flush privileges;
> quit
[root@sme #]
Which command should I add to enable UTF-8???