Plugin not working on PHP 7.0.27-0+deb9u1
-
Having issues with the Regenerate Thumbnails plugin on PHP 7.0.27-0+deb9u1. This is the latest package available for Debian.
Basically, when the plugin is enabled, WordPress Media section is just sitting there, “hourglassing”.
Screenshot: https://dev.mckinney-usa.com/RegenerateThumbnailsActivated.jpgWhen I deactivate the Regenerate Thumbnails plugin, the media gallery loads just fine.
Screenshot: https://dev.mckinney-usa.com/RegenerateThumbnailsDeactivated.jpgNote: GD support is broken on the current version of Debian’s PHP 7, so I’ve had to resort to using ImageMagick (using this inside of functions.php):
// Fix image processing add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Plugin not working on PHP 7.0.27-0+deb9u1’ is closed to new replies.