Guys below is given code and folder structure. Anyone can please help me why it appearing \"The upload path does not appear to be valid.\" error? How can I reso
As your upload location is outside of your application folder, something like this should work:
$config['upload_path'] = realpath(dirname(__FILE__)). '/Uploads/414208/';
if you decide to move your upload location within your application folder, then you can use APPPATH instead of realpath. If you use APPPATH, please note that it will have a trailing slash where realpath doesn't.