I'm having some weird problem with my <title> tag on my homepage (the problem occurs only on this page). The title does appear and after some refresh disappear (meaning I have <title>Homepage</title> and then <title></title>)
The problem occurs only on my production server. There's no problem on dev servers.
The problem seems to be resolved if I do create another configuration mode. For instance, I tried with my bypassmode.php (a copy from index.php but with new values: prod => bypass in my app.yml & doctrine.yml).
When I edit on production the view.yml to change title and then I ./symfony cc, it works again but disappear after a refresh. Same as when I do add the $response->setTitle('Homepage'); directly in the action.
I've taken a look at the cache file ./cache/frontend/prod/config/modules_home_config_view.yml.php but the title is set correctly.
I'm running out of ideas... Any suggestions ?
EDIT: As suggested below, I moved my <title> the closest possible to the <head> but it did not change anything.
After further investigation in function include_title(), is it possible that sfContext::getInstance()->getResponse()->getTitle(); might be undefined ? May APC be a problem ?
I'm considering editing AssetHelper.php:
function include_title()
{
$title = sfContext::getInstance()->getResponse()->getTitle();
// Adding some ugly patch here
if (empty($title))
$title = "Default title for my homepage";
// End nasty patch
echo content_tag('title', $title)."\n";
}
But this is so dirty that I wish I can find any other cleaner solution...
titlewith a default value, i,e<title><?php include_slot('title', 'Default Title') ?></title>and then whenever you want to change it, in your template<?php slot('title', 'New Title!')); ?>– pankar Sep 19 '12 at 17:31view.yml? – pankar Oct 1 '12 at 13:28