You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PHP connector requires that a target folder be writable, in order to allow it to be downloaded as a ZIP. There is no reason for this. If I can read a dir, I should be able to read it as a convenient ZIP download. (The ZIP file itself is generated and written into /tmp/, which is writable for everyone.)
The error is in LocalFilemanager.php:874
// check if file is writable
if(!$this->has_system_permission($target_fullpath, ['w'])) {
$this->error(sprintf($this->lang('NOT_ALLOWED_SYSTEM')));
}
(I discovered this while working on the allowFolderDownload option.)
Feel free to assign this issue to me. I am in the middle of config option updates and can fix this when that is done.
The text was updated successfully, but these errors were encountered:
The PHP connector requires that a target folder be writable, in order to allow it to be downloaded as a ZIP. There is no reason for this. If I can read a dir, I should be able to read it as a convenient ZIP download. (The ZIP file itself is generated and written into /tmp/, which is writable for everyone.)
The error is in LocalFilemanager.php:874
(I discovered this while working on the allowFolderDownload option.)
Feel free to assign this issue to me. I am in the middle of config option updates and can fix this when that is done.
The text was updated successfully, but these errors were encountered: