我正在运行一个php / IIS 8网站。
我已遵循此处的指示:
http://www.uploadify.com/documentation/uploadify/implementing-uploadify/
我的用户可以将文件上传到我的服务器上。
但是,当我调用函数move_uploaded_file时:
$imagename = $_FILES['Filedata']['name'];
$source = $_FILES['Filedata']['tmp_name'];
$target = "../ResLife/uploadimages/".$imagename;
move_uploaded_file($source, $target);
没有任何反应。它不会移动文件。
我在做错了什么?如何设置适当的权限以便执行此功能?