9
Quote:
I have been through all theme files for both themes and there is no sign of lcoalhost anywhere.
If you look at the sourcecode of the displayed page:
view-source:http://www.smashpro.com.au/xoops/
you can see that the "localhost" is being inserted as part of these lines:
<link rel="alternate" type="application/rss+xml" title="THEME_RSS" href="http://localhost/xoops/backend.php" />
<link rel="shortcut icon" type="image/ico" href="http://localhost/xoops/themes/zetagenesis/icons/favicon.ico" />
<link rel="icon" type="image/png" href="http://localhost/xoops/themes/zetagenesis/icons/icon.png" />
<link rel="stylesheet" type="text/css" media="screen" href="http://localhost/xoops/xoops.css" />
<link rel="stylesheet" type="text/css" media="all" href="http://localhost/xoops/themes/zetagenesis/css/layout-soup.css" />
<link rel="stylesheet" type="text/css" media="all" title="Color" href="http://localhost/xoops/themes/zetagenesis/css/style.css" />
Using a tool like InfoRapid Search (
http://inforapid.com/html/searchreplace.htm), you can find very quickly that
<link rel="alternate" type="application/rss+xml"
is coming from the file /Themes/zetagenesis/Xotpl/xometas.html:
<link rel="alternate" type="application/rss+xml" title="<{$smarty.const.THEME_RSS}>" href="<{xoAppUrl backend.php}>" />
So it's clear that the "http://localhost/xoops/" is being inserted as a value of "xoAppUrl".
Now you have to find out where is the value coming from. It could be from some file (like mainfile.php), or could be coming from your database.
I don't have the time to look for it, but just wanted to show you the way you can investigate what is going on...
Hopefully re-uploading the files will fix it...