how to upload zip/rar files in codeigniter
itried like this
$config['allowed_types'] = 'application/x-zip|application/x-zip-compressed|application/octet-stream|application/x-compress|application/x-compressed|multipart/x-zip';
but not working . please help me……………..
$config[‘allowed_types’] is a list of permitted extensions rather than mimetypes. Instead you would use:
Check the CodeIgniter user guide on File Uploading.