We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The warehouse application creates files and folders as part of its normal behaviour. Currently the permissions assigned are hard-coded.
E.g. in modules/rest_api/controllers/services/rest.php there is this snippet
$dest = DOCROOT . "upload-queue/$subdir"; if (!is_dir($dest)) { mkdir($dest, 0755, TRUE); }
The permissions should be configurable to suit different server environments.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The warehouse application creates files and folders as part of its normal behaviour. Currently the permissions assigned are hard-coded.
E.g. in modules/rest_api/controllers/services/rest.php there is this snippet
The permissions should be configurable to suit different server environments.
The text was updated successfully, but these errors were encountered: