![]() |
Multiple upload not working - 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: Multiple upload not working (/showthread.php?tid=51758) |
Multiple upload not working - El Forum - 05-16-2012 [eluser]amalik[/eluser] Hi, Before I ask my question I just want to mansion that I am new to codeigniter so if I am asking any thing stupid I am really sorry. I got a page in my website where I am giving functionality to my user to upload an image and a zip file. At any given time only one of them works. You can upload the image or the zip file, cant upload both of them at the same time. I dont know what the problem is. The part of the form where I am trying to upload the files is given below for you to have a look at Code: <?php echo form_open_multipart('');?> and my controller where I am uploading the files are as follows Code: //uploading image file I am really stuck and I will really appreciate if any body would like to help me. Thanks in advance amalik Multiple upload not working - El Forum - 05-16-2012 [eluser]achilleusrage[/eluser] Are you possibly exceeding the maximum upload size (both file sizes combined)? Does adding this give you any more information: Code: echo $this->upload->display_errors(); Multiple upload not working - El Forum - 05-16-2012 [eluser]amalik[/eluser] Thanks a lot for your reply. This gives me something like "The filetype you are attempting to upload is not allowed." but I know I double and triple checked with different files I am uploading all are of right formats. My zip file is 11kb and my image file is 56kb and my limit is 10mb so I think it shouldnt be a problem. Multiple upload not working - El Forum - 05-17-2012 [eluser]achilleusrage[/eluser] What types are reported when you echo this after an upload? Code: echo var_dump($_FILES); Perhaps your browser is sending a mime type that CodeIgniter does not know about in config/mimes.php? |