Problem with codification on Venus

Sam Ruby rubys at intertwingly.net
Wed Aug 5 22:09:13 EST 2009


Manolo Padron Martinez wrote:
> Hi:
> 
>> You haven't given enough information to provide a complete answer (a link to
>> one of these blogs would be helpful), but one common problem is that you
>> aren't serving the pages produced as utf-8 (the web default is iso-8859-1).
>>  See the following for instructions:
> 
> Thanks Sam.
> This are two blogs that making me crazy :
> http://hombrealto.com/web/?q=taxonomy/term/20/0
> http://www.rpenalva.com/blog/
> 
> As I know they have their head well formed (so If you go directly to
> their blogs all appears as it should)
> 
> In the planet (http://planet.codepixel.com/) we have this meta too (
> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> )
> 
> So I still have no clues

I took a look at what your server is returning using a tool named curl.

$ curl --head http://planet.codepixel.com/
HTTP/1.1 200 OK
Date: Wed, 05 Aug 2009 12:40:09 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch4 mod_ssl/2.2.3 OpenSSL/0.9.8c
Last-Modified: Wed, 05 Aug 2009 12:30:24 GMT
ETag: "781a61f-1b38d-2acd9800"
Accept-Ranges: bytes
Content-Length: 111501
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/html; charset=ISO-8859-1

What this is saying is that you are running Apache, and Apache is 
configured to tell the browser that this page is coded in ISO-8859-1 
(look at the last line), and the browser is following that advice.

There is nothing wrong with the blogs, there is something wrong with how 
Apache is configured on your site.  To fix this, you will need to follow 
the advice specified here:

   http://www.w3.org/International/O-HTTP-charset#server

I hope this helps.

> Regards from Canary Islands
> 
> Manuel Padrón Martínez

- Sam Ruby


More information about the devel mailing list