<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>Empty Portal in internet explorer</title> 
  <pubDate>Fri, 10 Apr 2026 14:48:34 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/7398</link> 
  <atom:link rel="self" type="application/rss+xml" title="Empty Portal in internet explorer" href="https://bugs.horde.org/ticket/7398/rss" /> 
  <description>Empty Portal in internet explorer</description> 
 
   
   
  <item> 
   <title>In internet explorer the portal page is empty with a permane</title> 
   <description>In internet explorer the portal page is empty with a permanent &quot;loading...&quot;

In firefox and opera the portal page appears correctly.</description> 
   <pubDate>Fri, 26 Sep 2008 09:05:53 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t49252</link> 
  </item> 
   
  <item> 
   <title>another problem:



in firefox 2 &quot;compose&quot; link doesn&#039;t work</title> 
   <description>another problem:



in firefox 2 &quot;compose&quot; link doesn&#039;t works in dimp.</description> 
   <pubDate>Fri, 26 Sep 2008 11:08:07 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t49253</link> 
  </item> 
   
  <item> 
   <title>I have the same problem using IE 6 or 7 with the latest rele</title> 
   <description>I have the same problem using IE 6 or 7 with the latest release Horde Groupware Webmail.</description> 
   <pubDate>Tue, 30 Sep 2008 18:28:56 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t49316</link> 
  </item> 
   
  <item> 
   <title>hi, discover and solved this problem... 



add in your hord</title> 
   <description>hi, discover and solved this problem... 



add in your horde/config/registry.php 



$this-&gt;applications[&#039;dimp&#039;] = array(

    &#039;fileroot&#039; =&gt; dirname(__FILE__) . &#039;/../dimp&#039;,

    &#039;webroot&#039; =&gt; $this-&gt;applications[&#039;horde&#039;][&#039;webroot&#039;] . &#039;/dimp&#039;,

    &#039;jsuri&#039; =&gt; $this-&gt;applications[&#039;horde&#039;][&#039;webroot&#039;] . &#039;/dimp/js/src&#039;,

    &#039;name&#039; =&gt; _(&quot;Dynamic Mail&quot;),

    &#039;status&#039; =&gt; &#039;notoolbar&#039;,

);



comment your dimp/js/src/ DimpBase.js in line 1101 (head.insert (link))... that the problem is resolved.



Leandro</description> 
   <pubDate>Fri, 03 Oct 2008 20:53:36 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t49371</link> 
  </item> 
   
  <item> 
   <title>Try the final release, report any javascript errors that you</title> 
   <description>Try the final release, report any javascript errors that you get, and enable the debug mode in DIMP&#039;s configuration.</description> 
   <pubDate>Tue, 07 Oct 2008 12:52:50 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t49438</link> 
  </item> 
   
  <item> 
   <title>Hi,



I met this &quot;Loading...&quot; page too in IE7 (7.0.5730.11,</title> 
   <description>Hi,



I met this &quot;Loading...&quot; page too in IE7 (7.0.5730.11, 7.0.5730.13) and IE6..

The javascript message was : &quot;doActionComplete callback: TypeError-Object does not support this property or method&quot;.



I&#039;m working with horde-webmail-1.2



Thanks to Leandro who discovered the line in DimpBase.js, I think I can suggest another solution.



According to prototypejs.org &quot;Tips and tutorial&quot; pages (http://www.prototypejs.org/learn/extensions), in the lasts 



paragraphs, it seems that &quot;IE (...) doesn&#039;t let anyone touch HTMLElement.prototype&quot; which is extended by prototype.js

This seems to explain the correct javascript message error about the non-support of the function insert by the HTMLElement 



head in the function _portalCallback of DimpBase.js



So, according to the script base for DIMP (dimp/js or dimp/js/src), we could :

1) File target : dimp/js/src/DimpBase.js (packaged version in horde-webmail-1.2 : v 1.1.2.106)

Function target : _portalCallback

Coding line : 1043

Original code : 

  head.insert(link);

New code (v1) :

  Element.extend(head);

  head.insert(link);

New code (v2) :

  $(head).insert(link);

New code (v3) :

  Element.insert(head, link);



2) File target : dimp/js/DimpBase.js

Function target : _portalCallback

Coding line : there is only one long long line

Original code :

  A.insert(D)

New code (v1) :

  Element.extend(A);A.insert(D);

New code (v2) :

  $(A).insert(D)

New code (v3) :

  Element.insert(A,D)



All have been successfully tested on Firefox 2.0.0.17, IE7, Safari for windows v3.1.2, the main portal page loads without any problem.



Hope it helps.

By the way, thanks to the horde team for their great work !



Emeric</description> 
   <pubDate>Wed, 12 Nov 2008 15:00:04 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50692</link> 
  </item> 
   
  <item> 
   <title>Thanks for the detailed analysis.</title> 
   <description>Thanks for the detailed analysis.</description> 
   <pubDate>Wed, 12 Nov 2008 16:58:03 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50698</link> 
  </item> 
   
  <item> 
   <title>I don&#039;t see this.</title> 
   <description>I don&#039;t see this.</description> 
   <pubDate>Thu, 20 Nov 2008 02:59:52 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50865</link> 
  </item> 
   
  <item> 
   <title>&gt; I don&#039;t see this.



I see it.  I had this exact problem w</title> 
   <description>&gt; I don&#039;t see this.



I see it.  I had this exact problem with internet explorer.  I made the v.3 changes suggested by Emeric and that corrected the problem.  I attached the two modified files with DimpBase.js.1 being the one from the js folder and DimpBase.js.2 being the one from the src folder.  Seems to work for me.  Thanks Emeric.</description> 
   <pubDate>Sat, 22 Nov 2008 02:12:47 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50904</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in CVS for this ticket:

http://cvs.h</title> 
   <description>Changes have been made in CVS for this ticket:

http://cvs.horde.org/diff.php/dimp/docs/CHANGES?r1=1.136&amp;r2=1.137&amp;ty=u
http://cvs.horde.org/diff.php/dimp/js/DimpBase.js?r1=1.175&amp;r2=1.176&amp;ty=u
http://cvs.horde.org/diff.php/dimp/js/src/DimpBase.js?r1=1.173&amp;r2=1.174&amp;ty=u</description> 
   <pubDate>Mon, 24 Nov 2008 21:53:44 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50928</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in CVS for this ticket:

http://cvs.h</title> 
   <description>Changes have been made in CVS for this ticket:

http://cvs.horde.org/diff.php/dimp/docs/CHANGES?r1=1.69.2.60&amp;r2=1.69.2.61&amp;ty=u
http://cvs.horde.org/diff.php/dimp/js/DimpBase.js?r1=1.1.2.109&amp;r2=1.1.2.110&amp;ty=u
http://cvs.horde.org/diff.php/dimp/js/src/DimpBase.js?r1=1.1.2.109&amp;r2=1.1.2.110&amp;ty=u</description> 
   <pubDate>Mon, 24 Nov 2008 21:57:59 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50930</link> 
  </item> 
   
  <item> 
   <title>OK - found the problem.  For some reason we were using docum</title> 
   <description>OK - found the problem.  For some reason we were using document.getElementsByTagName(), which doesn&#039;t work cross-browser properly.  We should always be using $$() instead.  Fixed.</description> 
   <pubDate>Mon, 24 Nov 2008 21:59:48 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/7398#t50931</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
