This is a migrated thread and some comments may be shown as answers.

Image Manageer Load and Load ...

4 Answers 44 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Hung
Top achievements
Rank 1
Hung asked on 15 Jun 2011, 04:39 AM
The Image Manager load and load too long.
My current RadEditor using is:
 

I also using Fiddler to investigate:


I appreciate if you can help me this problem.

4 Answers, 1 is accepted

Sort by
0
Stanimir
Telerik team
answered on 15 Jun 2011, 10:57 AM
Hi Hung,

In order to help you further I will need some additional information. Send me the web.config file of your MOSS site and the ConfigFile.xml, ToolsFile.xml, ListConfigFile.xml, ListToolsFile.xml, which are located in the /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/5.x.x.0__1f131a624888eeed/Resources/ folder.


Regards,
Stanimir
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

0
Hung
Top achievements
Rank 1
answered on 17 Jun 2011, 09:42 AM
In my product, I wrote  a httpmodule to customize RadEditor:

public void Init(HttpApplication context)
        {
            context.ReleaseRequestState += new EventHandler(context_ReleaseRequestState);
        }

        void context_ReleaseRequestState(object sender, EventArgs e)
        {
            if (!HttpContext.Current.Request.Url.ToString().Contains("/_layouts/"))
            {
                HttpResponse response = HttpContext.Current.Response;

                if (response.ContentType.ToLower() == "text/html")
                    response.Filter = new RadEditorFilter(HttpContext.Current.ApplicationInstance);
            }
        }

I also see sharepoint log and find out an error:

Possible mismatch between the reported error with code = 0x81070504 and message: "There is no Web named "serverUrl/en/PublishingImages"." and the returned error with code 0x80070002.    
There is no Web named "serverUrl/en/PublishingImages".
But I did not see any exception in my code, is DialogHandler.aspx throw it?
Please advise me.


0
Stanimir
Telerik team
answered on 21 Jun 2011, 04:09 PM
Hi Hung,

Could you please give me some more information.

1. The Image Manager load and load too long. - Does the problem library loads eventually?
2. Do you have the same problem with the Documents or the Pages libraries?
3. Are there a lot of sub-libraries in the PublishingImages library? - If there are, you should know that in the next version of RadEditor for MOSS we will include an optimization in the loading of folders with a lot of sub folders.
4. Are there any javascript errors in the page?
5. Do you experience the problem if you remove your custom code?

All the best,
Stanimir
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>

0
Hung
Top achievements
Rank 1
answered on 22 Jun 2011, 04:13 AM
Hi,
Yes, my custom httpmodule is a root cause. It keep and do not write the response from DialogHandler.aspx.
Thanks for your reply.
Tags
WebParts for SharePoint
Asked by
Hung
Top achievements
Rank 1
Answers by
Stanimir
Telerik team
Hung
Top achievements
Rank 1
Share this question
or