Welcome Guest, Not a member yet? Register   Sign In
allowed_types error
#1

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:
Code:
$config = array(
           'upload_path' => './uploads/images/',
           'allowed_types' => 'jgp|jpeg|png',
           'max_size' => 2048
       );
       $this->load->library('upload', $config);
 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.
Reply
#2

'jgp|jpeg|png' --> 'jpg|jpeg|png'
Reply




Theme © iAndrew 2016 - Forum software by © MyBB