leupold wrote
do you use any kind of iframe redirection?
Hi,
i am using IIS 6.0 and i have installed DNN as a virtual directory under an existing website. the main website uses frames redirection and my DNN installation seems to have "inherited" these settings. Both the page sources are given below:
<!-- page source of main website www.example.com --------------
<html><head><title></title></head>
<frameset rows='100%, *' frameborder=no framespacing=0 border=0>
<frame src="http://000.000.000.000/folder_name/index.html" name=mainwindow frameborder=no framespacing=0 marginheight=0 marginwidth=0></frame>
</frameset>
<noframes>
<h2>Your browser does not support frames. We recommend upgrading your browser.</h2><br><br>
<center>Click <a href="http://000.000.000.000/folder_name/index.html">here</a> to enter the site.</center>
</noframes></html>
----------------------- page source ends -->
<!-- page source of my DNN installation website www.example.com/dotnetnuke --------------
<html><head>
<title></title></head>
<frameset rows='100%, *' frameborder=no framespacing=0 border=0>
<frame src="http://000.000.000.000/dotnetnuke" name=mainwindow frameborder=no framespacing=0 marginheight=0 marginwidth=0></frame>
</frameset>
<noframes>
<h2>Your browser does not support frames. We recommend upgrading your browser.</h2><br><br>
<center>Click <a href="http://000.000.000.000/dotnetnuke">here</a> to enter the site.</center>
</noframes></html>
----------------------- page source ends -->
I have no clue how to set it right and i don't understand (technically) why my DNN installation is getting affected with the settings of the main website!!
Any help would be appreciated.