• dmatuls

    (@dmatuls)


    Hello, I just installed 2 plugins and I receive this message
    Fatal error: Call to undefined function wp_doing_ajax() in /home/dmatulsc/public_html/portal/wp-content/plugins/3d-flipbook-dflip-lite/3d-flipbook-dflip-lite.php on line 545
    I can’t edit any page or access to my dashboard. Please help!
    I don’t know how or if I can access to my site with FTP

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • corrinarusso

    (@corrinarusso)

    Are you sure your WordPress version is up to date ?
    wp_doing_ajax has been deprecated for a long time.

    Contact your hosting support :
    https://www.bluehosting.com.co/web-hosting/

    Ask them how to login to FTP or Control Panel.
    Navigate to /wp-content/plugins
    Delete the 3d-flipbook-dflip-lite folder.

    if you are really stuck you could add this to your functions.php file – but it not a solution :

    function wp_doing_ajax() {
        /**
         * Filters whether the current request is a WordPress Ajax request.
         *
         * @since 4.7.0
         *
         * @param bool $wp_doing_ajax Whether the current request is a WordPress Ajax request.
         */
        return apply_filters( 'wp_doing_ajax', defined( 'DOING_AJAX' ) && DOING_AJAX );
    }
    Thread Starter dmatuls

    (@dmatuls)

    Thank you very much for your answer. I’m gonna contact Bluehosting with this instructions. Thanks again for your time and indications.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Call to undefined function wp_doing_ajax()’ is closed to new replies.