It seems due to server setup. It work without any problem in cpanel servers.

collations is set my mysql, most servers it is set to latin by default.

We create table with following, with out specifying collations, it is added by your server, that create the problem.

CREATE TABLE `process_queue` (
`id` int(11) NOT NULL auto_increment,
`user` varchar(255) NOT NULL,
`title` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`keywords` varchar(255) NOT NULL,
`channels` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`status` int(2) NOT NULL,
`url` varchar(255) NOT NULL,
`file` varchar(255) NOT NULL,
`vid` int(11) NOT NULL,
`user_ip` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
);
If you can't get it working, PM me phpMyAdmin login details, i can fix it.