Home › Forums › Backend Issues (wp-admin) › magick/cache-view errors when using gallery field › Reply To: magick/cache-view errors when using gallery field
I would disable ImageMagick, after doing some research on it I found several instances of people getting odd errors because of it. More than likely caused by your specific host or hosting environment implementation of ImageMagick. Although I did not find your exact error.
https://core.trac.wordpress.org/ticket/25183
https://core.trac.wordpress.org/ticket/39387
https://wordpress.org/support/topic/imagickexception-thrown/
Although this could also have something to do with another plugin.
https://developer.wordpress.org/reference/hooks/wp_image_editors-9/
add_filter('wp_image_editors', 'disable_imagemagick');
function imagemagick($editor) {
return array('WP_Image_Editor_GD');
}
That or contact your host to see if they can help.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.