Welcome Guest, Not a member yet? Register   Sign In
Upload filetype not allowed??
#16

[eluser]Vangelis B[/eluser]
[quote author="rogierb" date="1266418911"]The order shouldn't matter.

Can you debug set_allowed_types() to see what $types and $this->allowed_types are?[/quote]

Unfortunately the people are right. The order does matter. The reason is that the upload library first does a check for images before check in the config/mimes.php. The library checks to see if the temp file (during the upload) returns an image size. Unfortunately it does the check for files that are not images as well. Obviously this is a bug.

A temporary solution is to comment the following lines in system/libraries/upload.php

Code:
if (in_array($val, $image_types)){
  if (getimagesize($this->file_temp) === FALSE){
    return FALSE;
  }
}

they are around line 565

I'll submit this bug and lets hope that CI devs will come up with a fix in the next CI version.


Messages In This Thread
Upload filetype not allowed?? - by El Forum - 02-16-2010, 02:49 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 02:59 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 03:21 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 03:44 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 03:48 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 04:03 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 04:49 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 05:38 AM
Upload filetype not allowed?? - by El Forum - 02-16-2010, 07:05 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 02:19 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 02:29 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 02:50 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 02:57 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 03:01 AM
Upload filetype not allowed?? - by El Forum - 02-17-2010, 04:16 AM
Upload filetype not allowed?? - by El Forum - 02-20-2010, 06:55 AM
Upload filetype not allowed?? - by El Forum - 02-22-2010, 08:11 AM
Upload filetype not allowed?? - by El Forum - 04-23-2010, 03:47 AM
Upload filetype not allowed?? - by El Forum - 06-29-2010, 11:43 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 04:34 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:41 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:43 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:46 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:48 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:50 AM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 04:08 PM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 04:53 PM
Upload filetype not allowed?? - by El Forum - 07-14-2010, 05:06 PM
Upload filetype not allowed?? - by El Forum - 08-11-2012, 12:31 PM
Upload filetype not allowed?? - by El Forum - 09-06-2012, 01:50 PM



Theme © iAndrew 2016 - Forum software by © MyBB