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' );
@podpriate: Would you please open a new thread for your question? Thank you!
All the best,
Torsten