I am getting this error in the upload functionality for CodeIgniter Image upload.
The upload path does not appear to be valid
This problem started happening after I uploaded the site from my local system to my live system.
I am adding my code below. I don't know what is wrong. I have gone through all the other forums on this. But nothing helped.
$config['upload_path'] = 'uploads';
$config['allowed_types'] = 'gif|jpg|png|jpeg|pdf';
$this->load->library('upload',$config);
$this->upload->initialize($config);
The folder has full permissions, and as I said it was working on my local system. Not sure what the issue could be. Any help will be greatly appreciated.
$config['upload_path'] = "uploads/";$config['upload_path'] = './uploads/';Make sure you have correct folder permissions.