I have a cakephp project that I am working on and when I look at the source code after it is rendered in the browser, it is throwing two question marks at the beginning of the code.

??<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

I have saved files as UTF-8, set the content-type to UTF-8, made sure that all of my controllers, models and classes are not ending in "?>", ensured that my database in MySQL is encoded to UTF-8 and checked that the cake config is set to Configure::write('App.encoding', 'UTF-8');.

This happens if I am pulling from the database or not.

I am using cakePHP 1.3.6. I tried adding the UTF-8 charset to the hosted directory in Apache and that did not help either.

I am not sure what else to do/look for. Any suggestions would be appreciated.

link|improve this question
Does this happen in all browsers? – JohnP Apr 21 '11 at 16:12
Take a binary look at the file. Is it really two ?? or something else ? – Cicada Apr 21 '11 at 16:18
Figured it out. The files were encoded to UTF-8, but I changed the encoding to ANSI and it fixed the issue. Not sure exactly why. Must have been an extra binary in there. – jeffstrash Apr 21 '11 at 17:00
have you tried to use another layout? – raultm Apr 21 '11 at 17:36
were these not byte order marks (BOM), sometimes used to distinguish unicode files? w3.org/International/questions/qa-byte-order-mark – contrebis Apr 22 '11 at 1:09
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.