tcghost wrote:seems I got it working with the development source. The bulletin seems to be working fine now, will get back to you with the rest of the stuff when I finish reconfigurng kplaylist.
EDIT: ok everything seems a lot better, but kplaylist now doesn't display any files with non-ansi characters in their filenames. It just skips them all together.
That's correct. There is a few more fixes you need to run:
ALTER TABLE `tbl_search` CHANGE `title` `title` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `tbl_search` CHANGE `comment` `comment` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `tbl_search` CHANGE `dirname` `dirname` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `tbl_search` CHANGE `free` `free` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `tbl_search` CHANGE `album` `album` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
ALTER TABLE `tbl_search` CHANGE `artist` `artist` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;
An automatic fix will be implemented later, for now, let's just make sure it works..