-
Notifications
You must be signed in to change notification settings - Fork 713
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
base: main
Are you sure you want to change the base?
Conversation
👋 @sandipsmarty If you like this project, please ⭐star⭐ our repo. |
⚡ Deployed with Pantheon Decoupled This build was successfully deployed with Pantheon. You can track the build logs here. 👀 Preview: https://pr-9514-documentation.appa.pantheon.site |
@sandipsmarty can you confirm the path set by the override has been created on the test and live environments? After the patch is applied and the following config override added to
|
@rachelwhitton I am not sure about this patch, haven't tried it, also in my |
I don't think manually editing settings yaml files is the right approach for an override like this, we'd want to set in code and tracked in git and imported to the db once in version control Also I'm curious if maybe there's an override in that site setting this to something undesirable |
That proposed patch only works for subset of use cases. The comments in the varios d.o issues about this are missing that the primary reason why dropzone has these challenges - it is because it doesnt chunk uploads, so what I recommend is to use this patch to fix the underlying issue https://www.drupal.org/project/dropzonejs/issues/3125682 and then a callout that if errors persist that the path should be updated to the non-temporary options on Pantheon that @sandipsmarty validated on current customer engagements |
I verified, this patch https://www.drupal.org/project/dropzonejs/issues/3125682 doesn't resolve the bulk media upload issue on Pantheon Test/Live environments. But changing the dropzonejs settings |
@lcatlett @rachelwhitton |
Summary
Drupal Modules with Known Issues - Solution for Drupal Media Bulk Upload issue on Pantheon.
The previous solution configuring "Upload Location" to
public://sites/default/files/private
, doesn't actually work on Pantheon Test and Live environments, because Test and Live environments have multiple containers/appservers. The Solution only works on Dev as it has single container.