Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Torsten Landsiedel

    (@zodiac1978)

    You need do add some lines to the nginx config. Have you done this?
    https://github.com/pluginkollektiv/cachify/wiki/Caching-Methoden

    (Just in German, but Google Translate will help you.)

    All the best,
    Torsten

    Had some strange issues on WP 4.4, Apache, PHP 7. Trying either

    It turned out that in the frontend the main plugin class is not loaded.
    Might have something to do with the class autoloading.

    I could fix it for me by adding the following lines in a mu-plugin :

    function CachifyInstance() {
        if ( class_exists('Cachify') ) {
            Cachify::instance();
        }
    }
        add_action( 'plugins_loaded', 'CachifyInstance' );
    Plugin Support Torsten Landsiedel

    (@zodiac1978)

    @podpriate: Would you please open a new thread for your question? Thank you!

    All the best,
    Torsten

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘wp 4.4 compatibility’ is closed to new replies.