1
I've had a site up for several years using XOOPS ver. 2.2x. I've recently moved the site from Network Solutions to IX Webhosting and have a unique issue. Even though mainfile.php and the theme.html file have been modified to eliminate any reference to the Network Solutions secure server, it still gets injected in the of the pages. The site's url is
http://www.bpbows.com. Following is an excerpt from the theme.html file.
--------------------------------------
<meta name="generator" content="XOOPS" />
<title><{$xoops_sitename}> - <{$xoops_pagetitle}>title>
<link href="favicon.ico" rel="SHORTCUT ICON" />
<link rel="stylesheet" type="text/css" media="screen" href="<{$xoops_url}>/xoops.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<{$xoops_url}>/themes/4whitebusiness/style.css" />
<script type="text/javascript" src="<{$xoops_url}>/themes/4whitebusiness/textsizer.js">script>
<script type="text/javascript" src="<{$xoops_url}>/themes/4whitebusiness/get_date.js">script>
<script type="text/javascript">
script>
head>
-----------------------------------
And this is what shows when you load the page in a browser and view source.
------------------------------------
<link href="http://www.bpbows.com/favicon.ico" rel="SHORTCUT ICON" />
<link rel="stylesheet" type="text/css" media="screen" href="https://secure.netsolhost.com/www.bpbows.com/xoops.css" />
<link rel="stylesheet" type="text/css" media="screen" href="https://secure.netsolhost.com/www.bpbows.com/themes/4whitebusiness/style.css" />
<script type="text/javascript" src="https://secure.netsolhost.com/www.bpbows.com/themes/4whitebusiness/textsizer.js">script>
<script type="text/javascript" src="https://secure.netsolhost.com/www.bpbows.com/themes/4whitebusiness/get_date.js">script>
------------------------------------
I have searched through the database and find no reference to secure.netsolhost.com. I have searched through the entire website tree with: find . -type f -exec grep "netsol" {} \; -print. This helped me to find several instances which I then eliminated. I have emptied templates_c, my browser cache, the site cookie, etc. and yet it still injects secure.netsolhost.com into the head of the document.
Anyone have any ideas? I'm stumped.
holljac