Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    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?
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 25th 2008
     
    What method are you using to integrate your Plogger gallery into your WordPress install?
  2.  
    I've followed the instructions in this thread:

    http://plogger.org/forum/discussion/1941/plogger-integration-for-wordpress/#Item_0
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 25th 2008
     
    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);
  3.  
    I just made these changes but this doesn't solve the issue. I will try to dig some deeper and will also post a question on the Wordpress forums.
    •  
      CommentAuthorkimparsell
    • CommentTimeJun 26th 2008
     
    Please let us know what you find out.
    •  
      CommentAuthorsidtheduck
    • CommentTimeJun 26th 2008 edited
     
    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).
  4.  
    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.