I tried to upload a vcard file using codeigniter. But It’s not allowed to upload. How to upload a vcard(.vcf) file using codeigniter?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll need to add the following to
/application/config/mimes.phpinside the$mimesarray.You’ll also need to set the
allowed_typesconfiguration variable for the upload class. An example of setting configuration variables can be found on the manual page.It’d be helpful to know if other file types can be successfully uploaded using your code, see some of what you’ve tried and also to know what error, if any you’re seeing when trying to upload a vcf file.