Just to clarify:

On Feb 8, 2007, at 3:03 PM, Aaron Hawryluk wrote:

Our publishing system doesn't use any strange character sets -

Your system is working with data in one character set, and publishing it to the web in another character set. The fix is *likely* just setting the right character set header in apache. Personally, I either do everything in UTF8 or ASCII with html entities for everything else.

You could try doing:
        AddDefaultCharset utf-8
in httpd.conf

or (i think this will work)
        $r->content_type("text/html; charset=utf-8");
in your handler








// Jonathan Vanasco

| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| SyndiClick.com
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      FindMeOn.com - The cure for Multiple Web Personality Disorder
|      Web Identity Management and 3D Social Networking
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|      RoadSound.com - Tools For Bands, Stuff For Fans
|      Collaborative Online Management And Syndication Tools
| - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


Reply via email to