If I remember correctly, this is from some confusion in the mysql client and php, not with the server. The data goes in just fine, but the mysql client may not necessarily pull it out right.
To use set names 'utf8' when using PEAR as your mysql client you simply add charset=utf-8 to your mysql connection string like: mysql://username:passw...@localhost/laconica?charset=utf-8 This won't change your server at all, it explicitly instructs the mysql client to use utf-8 at all times and hopefully resolves some of your UTF-8 issues. Beyond that, you really should go through and make sure you've set all your defaults to utf-8 and also go through and change everything you can from latin1 or whatever to UTF-8. _______________________________________________ Laconica-dev mailing list [email protected] http://mail.laconi.ca/mailman/listinfo/laconica-dev
