Can we get a General config to disable "Find and Replace" ? #14044
-
I'd like to disable it even for Admins in production. |
Beta Was this translation helpful? Give feedback.
Answered by
brandonkelly
Dec 27, 2023
Replies: 1 comment 2 replies
-
Just added a new // config/general.php
->disabledUtilities([
'updates',
'find-replace',
]) # .env
CRAFT_DISABLED_UTILITIES=updates,find-replace |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
brandonkelly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just added a new
disabledUtilities
config setting, for Craft 4.6 (2952b85). With that, you will be able to fully disable any utilities by their ID:# .env CRAFT_DISABLED_UTILITIES=updates,find-replace