An allowed_types and Upload issue |
[eluser]Riente[/eluser]
Hello everyone, I have a problem. I indicate two allowed file types $config[‘allowed_types’] = ‘gif|jpg’; The point is only the first one works fine. I mean that I can upload gif-files successfully, and when trying to upload a jpg-file I get an error “The filetype you are attempting to upload is not allowed”. If I write $config[‘allowed_types’] = ‘jpg|gif’; (i.e. swap their positions) then I upload jpg-files just fine, but have problems uploading gif-files. Here’s my code: Code: $this->load->library('upload'); What can be the problem?
[eluser]InsiteFX[/eluser]
If I remember correct I think there was a problem with this! You can download the new dev3.0 version here which should have the fix. CodeIgniter GitHub - Dev3.0
[eluser]Chathuranga Tennakoon[/eluser]
try with below code. it should work Code: $config['allowed_types'] = 'gif|jpg|jpeg';
[eluser]Riente[/eluser]
[quote author="Chathuranga Tennakoon" date="1336628778"]try with below code. it should work Code: $config['allowed_types'] = 'gif|jpg|jpeg'; no, that didn't help, thanks anyway
[eluser]Riente[/eluser]
No, in fact, I can upload both gif and jpg files, but separately, i.e. it allows only the first filetype in the row "gif|jpg". As I have said, if I change it to "jpg|gif" then I can upload only jpg-files. If "gif|jpg" - only gif-files... |
Welcome Guest, Not a member yet? Register Sign In |