Welcome Guest, Not a member yet? Register   Sign In
Need help with PDF uploading.
#1

[eluser]a.j.[/eluser]
Hi,

I'm trying to upload pdf file. It's ok with IE, Chrome. But it's not working with Mozilla Firefox.

Error: The filetype you are attempting to upload is not allowed.

Code:
$config['allowed_types'] = 'pdf';


Any solutions?
#2

[eluser]breaddes[/eluser]
CI validates filetypes against arrays in application/config/mimes.php. Try to change:
Code:
'pdf'    =>    array('application/pdf', 'application/x-download')

to
Code:
'pdf'    =>    array('application/pdf', 'application/x-download', 'application/download')
#3

[eluser]a.j.[/eluser]
Thanks!




Theme © iAndrew 2016 - Forum software by © MyBB