Notice: Undefined index: mosConfig_live_site

2009.02.09

If you are using Joomla! 1.5.x and your site is working just fine but you get the following error:

Notice: Undefined index: mosConfig_live_site in /home/user_name/public_html/templates/template_name/index.php on line 15

Where on line 15 is the favicon part of the template something like that:

<?php echo “<link rel=”shortcut icon” href=”$GLOBALS[mosConfig_live_site]/images/favicon.ico” />” ; ?>

You probably must change it with this:

<link rel=”shortcut icon” href=”images/favicon.ico” />

(if you want to have the favicon at the default images folder) and the error will go away.
I suppose that this error has something to do with the hosting company because you may not get any error if you check the same template at another hosting company.