![]() |
Large file upload with SWFUpload jQuery Plugin - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Large file upload with SWFUpload jQuery Plugin (/showthread.php?tid=23954) |
Large file upload with SWFUpload jQuery Plugin - El Forum - 10-27-2009 [eluser]farbar[/eluser] Using Codeigniter 1.7.2 and "SWFUpload jQuery Plugin" , I can successfully upload small images to server. When I upload a large file for example 50 mb , progressbar show uploading and SWFUpload show that upload have been completed but codeigniter generate "You did not select a file to upload" error that means "uploadfile" variable is empty. Have any one can help to solve this problem. This is my controller: Code: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); Code: [removed] Large file upload with SWFUpload jQuery Plugin - El Forum - 10-27-2009 [eluser]rogierb[/eluser] Is php.ini set up to allow for big uploads? e.g. upload_max_filesize and post_max_size? Large file upload with SWFUpload jQuery Plugin - El Forum - 10-27-2009 [eluser]Zeeshan Rasool[/eluser] Did you increase upload max file size for server? it can be changed in php.ini Large file upload with SWFUpload jQuery Plugin - El Forum - 10-27-2009 [eluser]farbar[/eluser] Thanks I changed max size in php.ini: Code: upload_max_filesize = 80M But I got another error: SWF DEBUG: Event: uploadError : Upload limit reached. No more files can be uploaded. I know the error is related to SWFUpload and I must slove it. Large file upload with SWFUpload jQuery Plugin - El Forum - 11-26-2009 [eluser]sharpe[/eluser] I'm getting this: Code: SWF DEBUG: Array This is the config Code: $config['upload_path'] = './uploads/'; But the swf returns this Code: [uploadfile] => Array It always return [type] => application/octet-stream. How did this work for you? Large file upload with SWFUpload jQuery Plugin - El Forum - 08-09-2010 [eluser]Fabdrol[/eluser] add 'application/octet-stream' to the mime types config file for image uploads ;-) see: http://codeigniter.com/wiki/SWFUpload/ |