Jaron S.
Jaron S.

Reputation: 81

Uploadify : IO error and HTTP error when uploading big file

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

Answers (3)

Mohit Singh
Mohit Singh

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

xdazz
xdazz

Reputation: 160833

Have you tried why-does-uploadify-stop-when-trying-to-upload-large-files.

Upvotes: 1

BlackCharly
BlackCharly

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

Related Questions