Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor viper007bond

    (@viper007bond)

    You’re running the latest version of my plugin, right? I fixed an issue related to a slow media library in v3.0.2.

    Also any errors in your browser’s network console? WordPress pulls in the grid view via AJAX (admin-ajax.php) and that request could be failing.

    Do you have any issues if you switch to list view? It’s the far left icon in that toolbar. List view isn’t AJAX powered so it could help debug.

    Also WordPress defaults to ImageMagick over GD automatically if it’s installed. Your code is actually making GD be preferred as it’s listed first.

    If you want GD to never be used, try this:

    
    add_filter( 'wp_image_editors', function( $editors ) {
    	return array( 'WP_Image_Editor_Imagick' );
    } );
    

    Evening, Alex!

    Yep, latest version (3.0.2).

    When I switch to list view with your plugin enabled, it actually causes a 502 Bad Gateway error (NginX). It took me disabling your plugin to gain access back to the media area (both the list and matrix views work correctly with RT deactivated).

    And I apologize… I’ve been staring at code, developing another plugin all day. I’ve gone a bit cross-eyed, haha!

    One of the two image processing platforms is broken on Debian’s PHP 7, so we’re forcing it to the other one, via the function that I posted (which is working correctly).

    Plugin Contributor viper007bond

    (@viper007bond)

    Hmm, that’s odd. And no errors in your PHP error_log ?

    I’d suggest playing with commenting out actions and filters in RegenerateThumbnails::setup() to see if you can narrow down which one specifically is causing the issue.

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.