我尝试使用 codeigniter 上传 vcard 文件。但是不允许上传。如何使用 codeigniter 上传 vcard(.vcf) 文件?
问问题
789 次
3 回答
1
如果上述建议不起作用,请尝试以下操作:
'vcf' => 'text/plain'
于 2012-10-13T02:02:51.763 回答
0
我需要使用
'vcf' => array('text/x-vcard', 'application/octet-stream', 'text/plain', 'text/directory')
全面覆盖。
于 2014-03-07T22:20:07.260 回答
0
您需要将以下内容添加到数组/application/config/mimes.php
内部。$mimes
'vcf' => 'application/octet-stream',
'vcf' => 'text/x-vcard'
您还需要allowed_types
为上传类设置配置变量。可以在手册页上找到设置配置变量的示例。
$config['allowed_types'] = 'vcf';
了解其他文件类型是否可以使用您的代码成功上传、查看您尝试过的一些内容以及了解您在尝试上传 vcf 文件时遇到的错误会很有帮助。
于 2012-05-14T16:04:30.197 回答