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.