我非常清楚在这个网站上多次回答类似的问题。我google并搜索了许多论坛,但我无法解决问题。
move_uploaded_file
函数不起作用,此函数由于适当的路径无法上传文件。
这是我的代码
$targetPath = "/home/abc/public_html/uploads/";
let my website is abc.com
move_uploaded_file($_FILES['Filedata']['tmp_name'],$targetPath.$_FILES['Filedata']['name']);
/public_html/uploads/downloads
move_uploaded_file
函数位于/public_html/assets/uploadify
/public_html/application/modules/downloads/views/admin
位置注意:此代码在我的localhost
中正常运行任何人都可以建议路径
Plz dnt mark dublicate
答案 0 :(得分:0)
假设您的上传文件位于public_html目录中,请将$ targetPath更改为/uploads/
并更改
move_uploaded_file($_FILES['Filedata']['tmp_name'],"$targetPath".$_FILES['Filedata']['name']);
这对我有用。