![]() |
Problem to Upload on a FTP using SWFUpload - 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: Problem to Upload on a FTP using SWFUpload (/showthread.php?tid=9679) |
Problem to Upload on a FTP using SWFUpload - El Forum - 07-04-2008 [eluser]Unknown[/eluser] Hello, In my application I want to integrate SWFUpload to let the users Upload files on a FTP server. In fact, I want to do the same thing that The SimpleDemo on the SWFUpload site. In my code I have successfully integrated the SWFUpload library and it works correctly for my little uploads. The problem happens when I try to upload files which have approximately a size bigger than 5 MB. The problem is that my progressbar reach immediately 100%, and, only after that the upload process begins. An other problem that I have is that while a file is transferring I can't cancel and remove the upload. From where come this problem ? Here is my view code : Code: <form id="form1" action="<?php echo base_url();?/upload/do_upload" method="post" enctype="multipart/form-data"> Here is my controller. I mean the problem comes from the $_FILES variables, but I'm not sure. Code: public function do_upload($id_ftp, $id_folder) Can the problem happen because I want to upload my files on a FTP server ? |