3 Answers, 1 is accepted
It is code aspx:
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<asp:ScriptManager ID="ad1" runat="server"></asp:ScriptManager>
<telerik:RadEditor runat="server" ID="reFull" SkinID="DefaultSetOfTools" Height="600px" Width="95%" EnableResize="false" NewLineMode="P" NewLineBr="False">
<ImageManager
EnableAsyncUpload="true" MaxUploadFileSize="5242880"
AllowMultipleSelection="true" EnableImageEditor="true" ViewPaths="/Images/News/image,/Images/News/image"
UploadPaths="/Images/News/image,/Images/News/image"
DeletePaths="/Images/News/image,/Images/News/image"
></ImageManager>
<FlashManager
EnableAsyncUpload="true" MaxUploadFileSize="524288000" SearchPatterns="*.*"
AllowMultipleSelection="True" />
<MediaManager
EnableAsyncUpload="true" MaxUploadFileSize="1048576000" SearchPatterns="*.*"
AllowMultipleSelection="true" />
<DocumentManager
EnableAsyncUpload="true" MaxUploadFileSize="524288000" SearchPatterns="*.*"
AllowMultipleSelection="true" />
</telerik:RadEditor>
In hosting file upload using FileUpload is good.
But using Editor upload Image, Document, error in hosting services, I have set permission in hosting allow rewrite,
What's the size of the uploaded image file? In case you upload large files, see this article: Upload Large Files (maxRequestLength).
If the problem is with the permissions, just for test give the everyone user full permissions and test the upload once again.
Yet another test that you could perform is setting the EnableAsyncUpload property to false.
Best regards,
Rumen
Telerik by Progress