I've started the integration of Plogger beta 3 (trunk 459) with Wordpress 2.5.1 and it all works like a charm except for a strange issue. I'm using UTF-8 for both Wordpress and Plogger and when you look at the homepage (http://www.halfje-bruin.nl/) the pages listed on the left has Australië listed. However, when I go to the "Foto Album" link in the Pagina menu (not the top one) the text is replaced with something garbled at the end. Note that the collection name "Australië" is properly displayed. I've removed the duplicate Content-Type header but this doesn't help.
Any suggestions as where to look for this problem?
Did you make the changes to plog-globals.php suggested in that thread, or are you using the version you downloaded?
I've just compared the suggested change in the thread to the code in the rev549 of that file, and there are 2 lines that are different - line 38 and 43. Try making the following changes and see if it helps:
Change line 38 from: $mofile = dirname(__FILE__).DIRECTORY_SEPARATOR . "plog-translations/" . $locale . ".mo"; to: $mofile = PLOGGER_DIR."plog-translations/".$locale.".mo";
Change line 43 from: $input = new FileReader($mofile); to: $input = new CachedFileReader($mofile);
Yes, please do. I have no problems with Australië on my test install (http://www.sidtheduck.com/wordpress/), but I don't have any locale defined for my Wordpress installation (default en_US).
I've removed the WPLANG define and the problem still exists. Maybe I have some time this weekend to look into this. When I find a solution I will post it here.