I just checked the error.log
inside cake/app/tmp
and found out that there's an error related with the `fa
2013-07-24 10:12:00 Error: [MissingControllerException] Controller class Favicon.icoController could not be found.
#0 C:\inetpub\wwwroot\app\webroot\index.php(92): Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse))
#1 C:\inetpub\wwwroot\index.php(42): require('C:\inetpub\wwwr...')
#2 {main}
Im confused, as I am able to see the favicon on my site and it is located in webroot/img
with the rest of images of the site. I am using a .png
format.
Also, there's a default favicon in webroot
called favicon.ico
which I believe is the CakePHP one.
This is the way I'm loading my own favicon in my layout header:
echo $this->Html->meta('icon', $this->Html->url('/img/favicon.png'));
What is this problem pointing out?