03-16-2017, 10:01 AM
Hi everybody.
i have an issue with upload library in codeigniter.
i have an image gallery in my project and i'm trying to upload images, i have a config array like this:
but it's not working and generates a file type not allowed error!
my problem solved with changing 'allowed_types' to "*", but now, user can upload any extension he wants!
i searched for solutions and tried to solve my problem with that, but problem is still there and i can't solve that! so i'll be gratefull if anybody can help me.
sorry for my bad English.
i have an issue with upload library in codeigniter.
i have an image gallery in my project and i'm trying to upload images, i have a config array like this:
Code:
$config = array(
'upload_path' => './uploads/images/',
'allowed_types' => 'jgp|jpeg|png',
'max_size' => 2048
);
$this->load->library('upload', $config);
my problem solved with changing 'allowed_types' to "*", but now, user can upload any extension he wants!
i searched for solutions and tried to solve my problem with that, but problem is still there and i can't solve that! so i'll be gratefull if anybody can help me.
sorry for my bad English.