我想在apache服務器中使用php解壓zip文件。但是我在這方面遇到了一個錯誤。 這是我的代碼。在apache服務器中使用php解壓zip文件
$enviornment = "zip -P test -r /var/www/test/test.zip /var/www/test/output/";
exec($enviornment, $output, $return);
echo "<pre>";
print_r($output);
這是錯誤消息。
[0] => zip I/O error: Permission denied
[1] => zip error: Could not create output file (/var/www/test/test.zip)
我已經在/ var/www/test/output /文件夾中放置了正確的權限。
確保所有文件夾中有適當的寫權限。 – 2014-09-26 12:20:57
你可以更新你的問題,並從'/ var/www/test'列出'ls'你的權限。 – Debflav 2014-09-26 12:22:36
我沒有給你 – 2014-09-26 12:33:23