I enabled IMCE for a Drupal 8 website, for convenience to site content admins to manage files directly.
However, since IMCE is respecting file usage references (which is actually a great feature), it is not possible to delete any file if they were added via another module, or more accurately, if the file has any references in `file_usage` table.
IMCE Delete plugin uses a config, "ignore_usage" prior the real deletion can occur.
What's the best way to set "ignore_usage" to TRUE? And what would be the downside of it, besides the obvious?
Thanks,
Osman
Comments
Comment #2
osmanI was able to change
ignore_usagevalue by simply altering the configuration for each profile.i.e. For a profile called "Manager":
Hope this will help others with the same problem.
Comment #3
aaronbaumanyou can also do it with drush:
drush cset imce.profile.admin conf.ignore_usage 1Comment #4
thallesThanks @all!
Comment #5
thalles