I want to ask about codeigniter upload.
Codeigniter version 2.1.4
I cant upload the image into the folder online, but it works perfectly on localhost
.
My code for upload image
$config['upload_path'] = './assets/frontend/images/banner/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '0';
$config['max_width'] = '0';
$config['max_height'] = '0';
$this->upload->initialize($config);
$this->upload->do_upload('BannerImg');
$banimg = $this->upload->data();
$bantitle = $this->input->post('BannerTitle');
$bandesc = $this->input->post('BannerDesc');
$this->banner_model->addBanner($banimg,$bantitle,$bandesc);
Do you know what's the problem?
Already try searching for it but can't find the solution.
Please if someone can help me.
Thanks.