Forum Moderators: open
I'm having some newly discovred problems. I was working on a website locally using the MAMP environment for development. I just uploaded the site to the client's FTP and now some strange character problems appeared. Here is an example, a simple apostrophe is shows as: today’s (in the word today's)
Other problems on the Spanish side of the site occur as well, all the accented characters like ñ get messed up too. I don't understand why they were not messed up on my local server?!
I used TextMate for development and Transmit for uploading the files to the FTP.
Any ideas what could be going on here?
You can either set the default characterset in the httpd.conf of the remote server, or in the head of every single document with a meta tag.
<meta http-equiv="content-type" content="text/html; charset=utf-8">
That is what I have.
You were right though, the client's server is set to iso-8859-1. The problem seems to be that my meta tag is having no effect on this.
I don't have enough access to the server to change the default charset although I'm sure I can make that happen if need be. Any other way I can try?