Reputation: 81
I am using uploadify to upload big files upto 60MB.
I am getting HTTP error while uploading 17MB file after uploading complete and processing while getting IO error in between uploading is in progress with 58 MB file.
what could be the issue?
Upvotes: 2
Views: 4495
Reputation: 142
I think you have to increase the file upload limits add these lines on your .htaccess
file
Change values according to your need. If it does't change contact to your service provider to increase upload limits.
upload_max_filesize = 10M
post_max_size = 20M
max_execution_time = 100
Hope this will help you.
Upvotes: 1
Reputation: 160833
Have you tried why-does-uploadify-stop-when-trying-to-upload-large-files.
Upvotes: 1
Reputation: 649
Can you give us the HTTP error and the IO error ?
By default, PHP only accept max 2mb files upload. Check on your php.ini :
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M
Upvotes: 0