0
我有文件夾結構這樣從根目錄以外上傳圖像在根目錄的文件夾
public_html
/images
outside
/file_uploader.php
即,public_html
是根目錄的文件夾。
outside
位於webroot文件夾之外。
所以,我想上傳文件夾public_html/images
。
我在文件outside/file_uploader.php
這個代碼:
move_uploaded_file(
$_FILES['img_name']['tmp_name'],
absolute/path/to/public_html/images/folder
);
但這返回錯誤,那Unable to access to public_html/images
文件夾。
問題:如何從outside_of_webroot_file
上傳文件在webroot\folder
?
這是文件系統權限的問題。如果你在linux上看看web用戶是否有權在文件夾「images」中寫入 – Liutas