Hi,
Since the Microsoft.WindowsAzure.Storage is already deprecated, the RadCloudUpload is broken. Is there a solution for this or alternatives that you can suggest? Thank you
Hello,
I am facing an issue when uploading to AWS S3, which is automatic renaming of the uploaded file
original file name is BD-september-2022-quarter.csv
and the new file name is : 03fb8435-90ea-4378-a602-925d37db8277_BD-september-2022-quarter.csv
i don't know why after upload the original filename is not being kept <telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" RenderMode="Lightweight" MultipleFileSelection="Automatic" OnClientFileUploading="OnClientFileUploading" AllowedFileExtensions=".csv" ProviderType="Amazon" localization-SelectButtonText="Browse to Upload ..." MaxFileSize="3145728" OnFileUploaded="RadCloudUpload1_FileUploaded"/>
Hello,
I am trying to upload file to S3Bucket and after being uploaded needs to move it to a subfolder under the bucket.
Is there any automatic proccess to upload directly to a S3Bucket/UserID folder?
or we have to create the sub folder first?
Thanks
Michel
Dears,
I want to generate thumbnail from images upload to cloud azure cloud already I have create azure function to generate thumbnail but it is not suitable for us because has many issues... if possible please share with me any way to do that
thanks
Hello,
is it possible to set the content-type of the file when uploading to Azure blob storage using radcloudupload?
Thanks
Hi Community,
I am forced to find a way to upload multiple files to an Amazon S3 Bucket. Therefore I am using an ASP.Net Webform with Telerik UI Ajax.
In short, this should be the solution:
The easiest way would be to select all files which should be uploaded. At first, all these files should be ziped.
This created zip-file should be transfered to the amazon s3 bucket.
Here I got some issues.
-> All my uploaded files got prefixes, which makes it hard to address them on the bucket. How do I Upload files via RadCloudUpload without any prefixes, just the pure filename?
Next issue:
-> Am I right that I am not able to create this zipfile on the local client machine?
What would be a proper workaround? The 'classic' RadAsyncUpload used a temp folder to collect these uploads. Unfortunately the asyncUploader is not able to address the Amazon S3 bucket.
Thank you in advance for your help.
We have a RadCloudUpload control that saves files to an S3 bucket. A postback is done afterwards by a save button. Works fine on dev machines.
On the AWS servers, some files get deleted after upload and save, but not all.
I uploaded 18 files today, 17 of them got deleted after the UncommitedFilesExpirationPeriod (which is set to 1 hour). This was during the day, when we run 16 web servers in a load balanced server group.
I tried later in the evening, when we reduce it to 2 web servers in the group. At that point, I uploaded 18 files again, and 9 were deleted.
That made me suspect that the problem is that the postback is done to a different webserver, and thus the RadUploadControl does not set the files as committed. Does that seem likely? If not, what could be the cause of this?
And more importantly, how should I solve it? I looked in the forum here and found how to override the DeleteFile method, which works... but then how do I allow users to delete files (which seems to work by simply never committing the file and then deleting it from S3 after the UncommitedFilesExpirationPeriod ).
Thanks.
When uploading large video files, the progress bar goes to 100% and then the control hangs. If I wait long enough, then the FileUploaded event will fire.
After a 700MB was uploaded, it took an additional 8 minutes for the upload to complete. After a 30MB file was uploaded, it took an additional 15 seconds to complete. Reading the files from cloud storage is fast.
Web.config:
<
httpRuntime
enableVersionHeader
=
"false"
targetFramework
=
"4.6"
maxRequestLength
=
"1024000"
executionTimeout
=
"36000"
maxQueryStringLength
=
"4096"
/>
<
telerik:RadCloudUpload
runat
=
"server"
ID
=
"RadCloudUploadVideo"
ProviderType
=
"Azure"
RenderMode
=
"Auto"
AllowedFileExtensions
=
".mp4, .webm, .ogv"
Localization-SelectButtonText
=
"Select MP4, WebM, or Ogv file to Upload"
HttpHandlerUrl
=
"~/Code/handlerVideoUpload.ashx"
OnClientFileUploaded
=
"fileUploaded"
>
<
FileListPanelSettings
RenderButtonText
=
"true"
/>
</
telerik:RadCloudUpload
>
Any ideas on what is causing this or how to troubleshoot?
Hello,
1) Is there a way to do an automatic post-back when files finish uploading without the user having to click on a button? I am trying to save uploaded file information to database for further processing. The event doe not seem to be firing.
Thanks.