• Resolved jgprkatelyn

    (@jgprkatelyn)


    [2024-03-27T15:15:44.312931+00:00] PHP Fatal error: Uncaught Error: Class “WP_List_Table” not found in /nas/content/live/eastonschools/wp-content/plugins/imagify/inc/classes/class-imagify-files-list-table.php:9#012Stack trace:#012#0 /nas/content/live/eastonschools/wp-content/plugins/imagify/vendor/composer/ClassLoader.php(576): include()#012#1 /nas/content/live/eastonschools/wp-content/plugins/imagify/vendor/composer/ClassLoader.php(427): Composer\AutoloadWPMediaImagifyWordPressPlugin{closure}(‘/nas/content/li…’)#012#2 /nas/content/live/eastonschools/wp-includes/plugin.php(122): Composer\AutoloadWPMediaImagifyWordPressPlugin\ClassLoader->loadClass(‘Imagify_Files_L…’)#012#3 /nas/content/live/eastonschools/wp-content/plugins/imagify/inc/classes/class-imagify-views.php(129): add_filter(‘set-screen-opti…’, Array, 10, 3)#012#4 /nas/content/live/eastonschools/wp-content/plugins/imagify/classes/Plugin.php(124): Imagify_Views->init()#012#5 /nas/content/live/eastonschools/wp-content/plugins/imagify/inc/main.php(33): Imagify\Plugin->init(Array)#012#6 /nas/content/live/eastonschools/wp-includes/class-wp-hook.php(324): imagify_init(”)#012#7 /nas/content/live/eastonschools/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array)#012#8 /nas/content/live/eastonschools/wp-includes/plugin.php(517): WP_Hook->do_action(Array)#012#9 /nas/content/live/eastonschools/wp-settings.php(506): do_action(‘plugins_loaded’)#012#10 /nas/content/live/eastonschools/wp-config.php(120): require_once(‘/nas/content/li…’)#012#11 /nas/content/live/eastonschools/wp-load.php(50): require_once(‘/nas/content/li…’)#012#12 /nas/content/live/eastonschools/wp-admin/admin.php(34): require_once(‘/nas/content/li…’)#012#13 /nas/content/live/eastonschools/wp-admin/index.php(10): require_once(‘/nas/content/li…’)#012#14 {main}#012 thrown in /nas/content/live/eastonschools/wp-content/plugins/imagify/inc/classes/class-imagify-files-list-table.php on line 9

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • nlittle

    (@nancylittle419)

    Any update on this? This issue is breaking the back end of several of my client’s websites.

    I’m having the same error PHP Fatal error: Uncaught Error: Class “WP_List_Table” not found, which is breaking the admin interface.

    Thread Starter jgprkatelyn

    (@jgprkatelyn)

    BUMP.

    We’ve also been having this issue on 20+ websites for the past week. What is the fix?

    I’ve also been having this issue.

    As a temporary fix, I added the code below to the file: imagify/inc/classes/class-imagify-files-list-table.php

    // Add this.
    if ( ! class_exists( 'WP_List_Table' ) ) {
     require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
    }
    // End.
    
    /**
     * Class that display the "custom folders" files.
     *
     * @since 1.7
     */
    class Imagify_Files_List_Table extends WP_List_Table {

    Hope it helps.

    Plugin Author WP Media

    (@wp_media)

    Hi everyone!

    Thank you so much for your patience!

    Our dev team has created the following small helper plugin?Imagify | Fix WP List table fatal error?to fix that error. It makes sure that?WP_List_Table?class is being loaded before our code.

    This is the helper plugin. Just install and activate it.

    However, the issue is being discussed further by our dev team. You can track the progress of the issue through the following link?https://github.com/wp-media/imagify-plugin/issues/869

    Let me know if you need further assistance. I’ll be happy to help.

    Best Regards,

    Ioanna

    @wp_media I ran into this error on a client’s site triggered from weird views like the login page and the user-creation page. Why is Imagify even loading on these pages? There’s no list table of images or posts on them which is possibly why the error crops up in the first place. It seems some optimization is needed if Imagify is fully loading all of its code even when it’s not needed.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Fatal Error’ is closed to new replies.