|
|
Posted 15/07/2005 03:41:43 |
|
|
Forum Guru
      
Group: Customers
Last Login: 14/02/2007 06:04:53
Posts: 74,
Visits: 207
|
|
| If IF 4.0 forums are installed in SSL web area (https://) then at times we get Security Warning (This page contains both secure and insecure items. Do you want to display insecure items? [Yes] [No] [More Info]) message box. It happens when you click on User Name or Rated Topic or Display Mode or Topic Options in every case the popup windows with additional option is displayed. The reason for the error is that absolute instead of relative addresses are being used in parts of the code. Robert
|
|
|
|
Posted 18/07/2005 05:08:10 |
|
|
IF.NET 4.2 Coming Soon
      
Group: Administrators
Last Login: Today @ 15:10:38
Posts: 1,957,
Visits: 3,021
|
|
| Hi Robert, Many thanks. This has now been resolved. If you would like to apply the fix open JavaScript/Globals.js and change... function if_setDiv(InnerHTML, DivLayer, Iframe, mnu_width) { // create iframe to hold div later var frameDiv = document.createElement('iframe'); frameDiv.id = Iframe; frameDiv.setAttribute('class',''); frameDiv.style.position = 'absolute'; frameDiv.style.zindex = 1; frameDiv.style.width = mnu_width; to function if_setDiv(InnerHTML, DivLayer, Iframe, mnu_width) { // create iframe to hold div later var frameDiv = document.createElement('iframe'); frameDiv.id = Iframe; frameDiv.setAttribute('class',''); frameDiv.setAttribute('src','blank.htm') frameDiv.style.position = 'absolute'; frameDiv.style.zindex = 1; frameDiv.style.width = mnu_width; You may also wish to create a blank.htm document within the installation root and admin folder to prevent 404 errors. This is just a blank html document. This will be included in the next update. Many thanks again for the report. I've just added you to our customer group.
 Kindest Regards,
Ryan Healey Director / Developer
Explore our products... http://demos.instantasp.co.uk/
|
|
|
|
Posted 20/07/2005 08:01:42 |
|
|
Forum Guru
      
Group: Customers
Last Login: 14/02/2007 06:04:53
Posts: 74,
Visits: 207
|
|
| Many tnxs, it is working now. Robert
|
|
|
|