Welcome Guest, Not a member yet? Register   Sign In
Uploading Zip Files
#14

[eluser]bigtony[/eluser]
Just had this problem whereby CI not allowing upload of ZIP filetype. When I traced through the Upload.php library I noticed that for some reason the variable $this->file_type was "application/x-zip" (i.e. INCLUDING the quotation marks). Therefore it could not find it in the array of allowed mime types (which are without quote marks).

To solve, I just added another element to the array for 'zip' in the mimes.php config file that included the string with quotation marks.

Change line:
Code:
'zip'    =>  array('application/x-zip', 'application/zip', 'application/x-zip-compressed'),
To this:
Code:
'zip'    =>  array('application/x-zip', 'application/zip', 'application/x-zip-compressed', '"application/x-zip"'),

Thought it might help someone.


Messages In This Thread
Uploading Zip Files - by El Forum - 02-28-2009, 12:11 PM
Uploading Zip Files - by El Forum - 02-28-2009, 12:25 PM
Uploading Zip Files - by El Forum - 02-28-2009, 12:47 PM
Uploading Zip Files - by El Forum - 02-28-2009, 12:54 PM
Uploading Zip Files - by El Forum - 02-28-2009, 12:56 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:02 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:10 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:11 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:14 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:16 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:19 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:21 PM
Uploading Zip Files - by El Forum - 02-28-2009, 01:32 PM
Uploading Zip Files - by El Forum - 05-11-2009, 08:23 AM



Theme © iAndrew 2016 - Forum software by © MyBB