The animal shelter folder is not the root of my website, I am sorry if what I wrote was misleading. The root is a folder called "brookhaven_web" and the "animalshelter" folder is a subfolder of "brookhaven_web" along with many other folders, such as "portals". Surprisingly, there is no "default.aspx" file in the "animalshelter" folder and the portal currently works fine on DNN 4.9.5. Also, in all of my other portals there IS a "default.aspx" file in their folders and these portals work fine after the upgrade. The only thing wrong is on my animalshelter portal the menu bar items do not open after the upgrade. I tried copying a "default.aspx" file from one of my other portals, but after the upgrade the animalshelter portal just goes to my main portal. Also, in the animalshelter folder there is a "index.htm" file with the below content. and a file called "copy of index.aspx" that has this small amount of code in it... any ideas with this info? copy of index.aspx code "<%response.buffer=true%><%@ Page Language="VB" %> <%
Response.Redirect("http://www.brookhaven.org/animalshelt...")
%>" Index.htm code
[script removed]
[script removed][script removed]
var loc = window.location.href;
var server3 = 'brookhaven.org/animalshelter';
var server8 = 'brookhaven.org/animalshelter'; var newLoc = 'http://www.brookhaven.org/animalshelter/Home/tabid/336/Default.aspx'; if (loc.toLowerCase().indexOf(server3) !=-1)
newLoc = 'http://www.brookhaven.org/animalshelter/Home/tabid/336/Default.aspx';
else if (loc.toLowerCase().indexOf(server8) !=-1)
newLoc = 'http://www.brookhaven.org/animalshelter/Home/tabid/336/Default.aspx';
else
newLoc = 'http://www.brookhaven.org/animalshelter/Home/tabid/336/Default.aspx'; if (document.images)
setTimeout('window.location.replace(newLoc)',0);
else
setTimeout('window.location = newLoc',0);
//-->[script removed]
[script removed]
[script removed]
|