Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have installed Apache on my server (I wasn't using Apache) and special characters started to show wrong.

So I changed every file to UTF-8, configured MySQL to work with UTF-8 and everything worked fine. However, my Python app (which retrieves some information from the website) doesn't work properly.

For example, I had a file "test.php" which returned either 0 or 1. Python code then did whatever with that result.

But now, my Python app doesn't receive "0", I don't know what it gets from the website. I made the app send a GET request to my site with what it was getting and it sent me this: "???0".

What can I do? I tried to change the header to send the result as ISO-8859-1 (as it was before) but isn't working either.

Thanks in advanced

share|improve this question
1  
how about showing us the code that is generating that strange reply? And inspecting that source file for strange chars? – Mat May 17 '11 at 17:02
if (mysql_num_rows($mixIDq) > 0) { $mixinfo = mysql_fetch_assoc($mixIDq); $mixID = $mixinfo['mix_id']; $mix = new mix($mixID); $team = $mix->getTeamFromSteam($stmid); $team += 2; echo $team; } else { echo "0"; } – Ivan May 17 '11 at 17:03
Is the byte order mark (BOM) enabled on any of your files? That could be including a single weird character before any other output. – sdleihssirhc May 17 '11 at 17:04
That is the code, that is why I said it's really weird. I'm just echoing "0" or the other result – Ivan May 17 '11 at 17:04
try forcing your text editor to save the source file -without- BOM. – drudge May 17 '11 at 17:04
show 4 more comments

1 Answer

up vote 1 down vote accepted

It's BOM symbol. Remove this symbol from script in Notepad++ editor (Menu -> Encoding -> Encode in UTF-8 without BOM).

share|improve this answer
BOF? Maybe BOM? – Mat May 17 '11 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.