Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Uploadify: Large files fail - progress to 100% and fail


Go to End


3 Posts   2689 Views

Avatar
otherjohn

Community Member, 125 Posts

20 January 2012 at 4:03am

Hi all,
I am at a loss here. I am trying to upload files around 200mb directly to amazon s3 and they fail when they are large. Smaller files work fine.
I get no error messages and the progress reaches 100%. But it doesn't do anything after reaching 100% and I check my s3 bucket and the file is not there.
Any ideas?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

26 January 2012 at 7:02am

Well, keep in mind, you're not uploading directly to the S3 server. You're uploading to your web server and that's being transferred to S3 using the API on the backend. So your web server will have to be configured to accept uploads of the size you're uploading.

upload_max_filesize 500M
max_post_size 500M
max_execution_time 300

--------------------
SilverStripe tips, tutorials, screencasts and more: http://www.leftandmain.com

Avatar
otherjohn

Community Member, 125 Posts

26 January 2012 at 7:13am

Wait, you mean to tell me I am not going directly to s3! Aagggh. I have wasted so much time on this! LOL
I thought we were uploading directly to s3 so I have been way off.