Can you test the standalone samples so we can get FCKeditor out and just focus on CKFinder? How many images do you have? and how big are they? Are the thumbnails created properly (that's it: only once and really a small file) ?
This looks like a thread for the CKFinder forum, not a general issue with FCKeditor, so it should be moved there.
I'm trying to figure out why it could have such incredible slow reaction.
Can you try to disable the thumbnails? in the config.asp file change
Images.Add "component", "Auto"
with
Images.Add "component", "None"
That can help to rule out some part of the code, but I think that in order to really find the problem I would need to be able to do changes in those files, so please, contact Wiktor so we can arrange a way to do the tests.
At least it seems that we can narrow the code that it's affecting. Now set this:
Images.Add "component", "Asp.Net"
And try again.
If it works, then try to upload an image, I guess that it should go back to a very slow creation of the new thumbnail, but at least it's quite better and we know the code that we should test.
In order to generate the thumbnails the Asp version needs some code to create them. If you don't have one of the ActiveX components bought and installed in your server, you should be using automatically the asp.net code that it's included in CKFinder for Asp, and by stating that you want to use that version we avoid the check every time that the code related to images is run.
On the other side, if you have one of the components and you want to use it, then change the "Asp.Net" string for the identifier for the component that it's installed, it will also help by skipping the automatic detection. I just was trying to guess the element that it's generating the thumbnails in your installation.
Ok I changed to asp.net and it seems to work ok now, its fast and I can see the thumbnails, please can you take a look and see that everything else looks ok, thanks, James
I just finished a ckfinder + ckeditor integration for http://www.creologic.ca and had the same issue. The ckfinder took forever to load and was extremely slow. As soon as I changed the line of code below the issue was resolved:
Images.Add "component", "Auto"
Changed to:
Images.Add "component", "Persits.Jpeg"
By default, "Auto" is used. We have Persits components on the server and ckfinder supports Persits Jpeg, so I changed it up and ckfinder now loads incredibly fast.
If you leave the component as auto, the script tries to find continuously which one can used, so the proper options are shown. If you specify which one is the good one then it can skip those tests and use it only when required. That's why one of the suggestions of the setup wizard is to replace auto with the detected value
How many images do you have?
and how big are they?
Are the thumbnails created properly (that's it: only once and really a small file) ?
This looks like a thread for the CKFinder forum, not a general issue with FCKeditor, so it should be moved there.
The sample files run just as slow, please see
http://jetwash.chameleon-web.co.uk/ckfi ... editor.asp
Thanks, James
Can you try to disable the thumbnails?
in the config.asp file change
with
That can help to rule out some part of the code, but I think that in order to really find the problem I would need to be able to do changes in those files, so please, contact Wiktor so we can arrange a way to do the tests.
Now set this:
And try again.
If it works, then try to upload an image, I guess that it should go back to a very slow creation of the new thumbnail, but at least it's quite better and we know the code that we should test.
On the other side, if you have one of the components and you want to use it, then change the "Asp.Net" string for the identifier for the component that it's installed, it will also help by skipping the automatic detection. I just was trying to guess the element that it's generating the thumbnails in your installation.
Ok I changed to asp.net and it seems to work ok now, its fast and I can see the thumbnails, please can you take a look and see that everything else looks ok, thanks, James
Images.Add "component", "Auto"
Changed to:
Images.Add "component", "Persits.Jpeg"
By default, "Auto" is used. We have Persits components on the server and ckfinder supports Persits Jpeg, so I changed it up and ckfinder now loads incredibly fast.
Hope this helps
Kelly.
That's why one of the suggestions of the setup wizard is to replace auto with the detected value