Skip to content

Solution added for Media bulk upload module issue on Pantheon. #9514

New issue

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/content/modules-known-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,9 @@ ___
## [Media Bulk Upload](https://www.drupal.org/project/media_bulk_upload)
<ReviewDate date="2024-06-24" />

**Issue**: The default configuration for this module has been known to cause issues related to the "Upload location" setting, which out of the box uses the `/tmp` directory.
**Issue**: The Media Bulk Upload module uses dropzoneJS which doesn't interact well with multi-container environments like Pantheon, where each web server uses its own local temp directory. The upload handler should not use local server directories. Instead, rely on the shared file system.

**Solution**: Configure the "Upload location" to `public://sites/default/files/private` You must include the `public://` protocol for this solution to work.
**Solution**: This issue can fixed by changing the `tmp_upload_scheme` configuration from `temporary` to `public` in the `dropzonejs.settings.yml` file.

___

Expand Down