如果遇到php5.6 上传图片error代码为6 或者 报错“PHP Warning: File upload error - unable to create a temporary file in
Posted qtffg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果遇到php5.6 上传图片error代码为6 或者 报错“PHP Warning: File upload error - unable to create a temporary file in相关的知识,希望对你有一定的参考价值。
问题:再利用webuploader上传图片的时候发现,报错,打印了$_FILES["file"]["error"] 发现是6,找不到临时文件夹;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$_FILES[‘file‘][‘error‘]有以下几种类型: 1、UPLOAD_ERR_OK 其值为 0,没有错误发生,文件上传成功。 2、UPLOAD_ERR_INI_SIZE 其值为 1,上传的文件超过了 php.ini 中 upload_max_filesize选项限制的值。 3、UPLOAD_ERR_FORM_SIZE 其值为 2,上传文件的大小超过了 html 表单中 MAX_FILE_SIZE 选项指定的值。 4、UPLOAD_ERR_PARTIAL 其值为 3,文件只有部分被上传。 5、UPLOAD_ERR_NO_FILE 其值为 4,没有文件被上传。 6、UPLOAD_ERR_NO_TMP_DIR 其值为 6,找不到临时文件夹。PHP 4.3.10 和 PHP 5.0.3 引进。 7、UPLOAD_ERR_CANT_WRITE 其值为 7,文件写入失败。PHP 5.1.0 引进。 |
解决方案:
1、先看一下PHP的php.ini中是否设置临时文件夹,php.ini的upload_tmp_dir选项。(有没有被注释,有没有设置临时文件)
2、如果有设置临时文件的话,看权限有没有读写权限
Linux: chmod -R 0777 /tmp
Windows: 设置 C:/temp 目录权限 everyone 可读写。
3、重启服务器apache
sudo apachectl restart;
好了,这样应该没问题了!
以上是关于如果遇到php5.6 上传图片error代码为6 或者 报错“PHP Warning: File upload error - unable to create a temporary file in的主要内容,如果未能解决你的问题,请参考以下文章