Hi,
I have a serious issue. The time the editor takes to load on my page is very long.
When i run my application on my local system i dont actually feel the difference but when I deploy it on my client side and try to access it is where i face the problem. It takes a lot of time.
I was wondering if anyone knows hwo to reduce this. if this keeps up then i may have to look at some editor which will load faster.
Thanks in advance
I have a serious issue. The time the editor takes to load on my page is very long.
When i run my application on my local system i dont actually feel the difference but when I deploy it on my client side and try to access it is where i face the problem. It takes a lot of time.
I was wondering if anyone knows hwo to reduce this. if this keeps up then i may have to look at some editor which will load faster.
Thanks in advance

Re: How to improve FCK loading time
FCKeditor.prototype._GetIFrameHtml = function() { // This should be fckeditor.html for compressed javascript files. var sFile = 'fckeditor-original.html' ; try { if ( (/fcksource=true/i).test( window.top.location.search ) ) sFile = 'fckeditor.original.html' ; } catch (e) { /* Ignore it. Much probably we are inside a FRAME where the "top" is in another domain (security error). */ } var sLink = this.BasePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.InstanceName ) ; if (this.ToolbarSet) sLink += '&Toolbar=' + this.ToolbarSet ; return '<iframe id="' + this.InstanceName + '___Frame" src="' + sLink + '" width="' + this.Width + '" height="' + this.Height + '" frameborder="0" scrolling="no"></iframe>' ; }If the sFile variable is set as fckeditor-original.html that means you're downloading all the original source files with your implementation. If you change this to fckeditor.html you will be downloading FCK_HOME/editor/js/*.js instead which is your compressed js file.
The biggest problem with this is if you made any changes to the source files in FCK_HOME/editor/_source/*. If this is the case then you will need to download the FCKeditor.packager.exe which has an easy to follow readme to compress all of your changes into the correct directory.
Hope this helps
Re: How to improve FCK loading time
http://www.fckeditor.net/demo
Re: How to improve FCK loading time
http://www.itansvar.se
Re: How to improve FCK loading time
-"Hey this guy says that he has a problem"
-"Yes, he said it also here"
-"but it works fine for us"
-"also for us"
-"so you don't have a clue?"
-"no"
-"bye"
-"bye"
as a minimum, I would ask you to please set up a demo that can be tested, if this was really a problem in DNN then lots of people would be complaining, not only you.
Re: How to improve FCK loading time
http://support.microsoft.com/kb/279745