Select the search type
  • Site
  • Web
Search
You are here:  Support/Forums
Support

Bring2mind Forums

Telerik Upload file issue
Last Post 04/01/2010 3:53 PM by Peter Donker. 2 Replies.
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
David Dolheguy
New Member
New Member
Posts:3


--
04/01/2010 2:55 AM

We recently installed version 5.2.4 on a trial license on our DNN 5.2.2 site.

Even though the installation went without any issues, upon adding a file (using the default Telerik uploader) we receive the below error message.  On changing the Uploader to ASPUpload, it works. This lead me to believe there was a registration issue so I checked the documentation against what was written into our web.config file and found some interesting differences. Our Web.config file states:    


       
       
       

   

     


     
     

 

 

 

Can someone please advise?

David Dolheguy
New Member
New Member
Posts:3


--
04/01/2010 3:11 AM

Sorry for some reason my web.config information didn't come out in the above post.

[httpmodules]
[add name="UrlRewriteModule" type="UrlRewritingNet.Web.UrlRewriteModule, UrlRewritingNet.UrlRewriter"][/add]
[!-- add name="Authentication" type="DotNetNuke.HttpModules.AuthenticationModule, DotNetNuke.HttpModules.Authentication" / --]
[add name="Compression" type="DotNetNuke.HttpModules.Compression.CompressionModule, DotNetNuke.HttpModules"][/add]
[add name="RequestFilter" type="DotNetNuke.HttpModules.RequestFilter.RequestFilterModule, DotNetNuke.HttpModules"][/add]
[add name="UrlRewrite" type="DotNetNuke.HttpModules.UrlRewriteModule, DotNetNuke.HttpModules"][/add]
[add name="Exception" type="DotNetNuke.HttpModules.Exceptions.ExceptionModule, DotNetNuke.HttpModules"][/add]
[add name="UsersOnline" type="DotNetNuke.HttpModules.UsersOnline.UsersOnlineModule, DotNetNuke.HttpModules"][/add]
[add name="DNNMembership" type="DotNetNuke.HttpModules.Membership.MembershipModule, DotNetNuke.HttpModules"][/add]
[add name="Personalization" type="DotNetNuke.HttpModules.Personalization.PersonalizationModule, DotNetNuke.HttpModules"][/add]
[add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"][/add]
[add name="Analytics" type="DotNetNuke.HttpModules.Analytics.AnalyticsModule, DotNetNuke.HttpModules"][/add]
[add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"][/add]
[add name="DMX_RadUploadModule" type="Bring2mind.Telerik.WebControls.RadUploadHttpModule, Bring2mind.Telerik.RadUpload.Net2"][/add]
[add name="WebDAVAuthenticationModule" type="Bring2mind.DNN.Modules.DMX.WebDAV.AuthenticationModule, Bring2mind.DNN.Modules.DMX.WebDAV"][/add]
[/httpmodules]
[httphandlers]
[!-- This is for CAPTCHA support --]
[add type="DotNetNuke.UI.WebControls.CaptchaHandler, DotNetNuke" verb="*" path="*.captcha.aspx"][/add]
[!-- This is for Serving files, secure, insecure, from database --]
[add type="DotNetNuke.Services.FileSystem.FileServerHandler, DotNetNuke" verb="*" path="LinkClick.aspx"][/add]
[!-- This adds syndication support --]
[add type="DotNetNuke.Services.Syndication.RssHandler, DotNetNuke" verb="*" path="RSS.aspx"][/add]
[!-- This adds legacy support for the Logoff page --]
[add type="DotNetNuke.Services.Authentication.LogOffHandler, DotNetNuke" verb="*" path="Logoff.aspx"][/add]
[!-- ASP.NET AJAX support --]
[remove verb="*" path="*.asmx"][/remove]
[add type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" verb="*" path="*.asmx" validate="false"][/add]
[add type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" verb="*" path="*_AppService.axd" validate="false"][/add]
[add type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" verb="GET,HEAD" path="ScriptResource.axd" validate="false"][/add]
[add type="Telerik.Web.UI.WebResource, Telerik.Web.UI" verb="*" path="Telerik.Web.UI.WebResource.axd" validate="false"][/add]
[add type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" path="ChartImage.axd" validate="true"][/add]
[add type="Bring2mind.Telerik.WebControls.RadUploadProgressHandler, Bring2mind.Telerik.RadUpload.Net2" verb="*" path="Bring2mind.Telerik.RadUploadProgressHandler.aspx"][/add]
[add type="Bring2mind.DNN.Modules.DMX.WebDAV.DavHandler, Bring2mind.DNN.Modules.DMX.WebDAV" verb="GET,HEAD,PUT,OPTIONS,PROPFIND,PROPPATCH,COPY,MOVE,DELETE,MKCOL,LOCK,UNLOCK,DEBUG" path="dmxdav.axd" validate="false"][/add]
[add type="Bring2mind.DNN.Modules.DMX.WebDAV.DavHandler, Bring2mind.DNN.Modules.DMX.WebDAV" verb="OPTIONS,PROPFIND" path="*" validate="false"][/add]
[/httphandlers]  

Peter Donker
Veteran Member
Veteran Member
Posts:4536


--
04/01/2010 3:53 PM
Hi David,

I changed your post to avoid the html problems of posting.

About this issue: there are a couple of things to do/note.

1. You can move the handler up in the chain to make sure nothing else is taking the request. The handler that is the one we're after is the progress handler for the telerik upload: [add type="Bring2mind.Telerik.WebControls.RadUploadProgressHandler, Bring2mind.Telerik.RadUpload.Net2" verb="*" path="Bring2mind.Telerik.RadUploadProgressHandler.aspx"][/add]

2. You must make sure that it is in the right part as well (depending on IIS version it's either under system.web of system.webServer).

3. If all else fails you can do a Fiddler trace to see what is actually being sent back by the server. That might give a clue which component is "picking up the call".

Peter
You are not authorized to post a reply.