带有wamp的windows上的move_uploaded_file()错误

时间:2013-04-11 10:18:05

标签: php windows permissions

Warning: move_uploaded_file(C:\wamp\www/uploads/a.mp3): failed to open stream: No such file or directory in C:\wamp\www\display\uploadfile.php on line 206

Warning: move_uploaded_file(): Unable to move 'C:\wamp\tmp\php75FD.tmp' to 'C:\wamp\www/uploads/a.mp3' in C:\wamp\www\display\uploadfile.php on line 206

的var_dump:

array (size=1)
  'file' => 
    array (size=5)
      'name' => string 'a.mp3' (length=5)
      'type' => string 'audio/mp3' (length=9)
      'tmp_name' => string 'C:\wamp\tmp\php75FD.tmp' (length=23)
      'error' => int 0
      'size' => int 4030592

tmp和upload目录的权限设置为每个人>完全权限

PHP已正确设置上传文件大小

我不知道文件为什么不上传...

编辑: 码: http://pastebin.com/kFG2v2PJ

2 个答案:

答案 0 :(得分:6)

问题:C:\wamp\www/uploads/

将斜杠更改为反斜杠,并确保目录C:\wamp\www\uploads\存在。您可以使用DIRECTORY_SEPARATOR常量使代码在多个系统上运行。

此外,如果没有看到您的代码,您需要确保在move_uploaded_file()

中添加正确的参数

代码后编辑:

更改

$target_path = APP_PATH."/uploads/";

$target_path = APP_PATH . DIRECTORY_SEPARATOR . "uploads" . DIRECTORY_SEPARATOR;

答案 1 :(得分:0)

你的/ uploads目录是否存在?如果是,请检查var_dump($_FILES)检查是否$_FILES['uploaded']['error']。包含0,表示“无错误”