• When submitting a comment via Jetpack on https://schibboleth.com/ the following error message appears next to “Submitting comment”:

    Notice: Undefined variable: supercache_home in […]/wp-cache-phase2.php on line 1143

    regards, nl

Viewing 1 replies (of 1 total)
  • #misterebs

    (@ekoboedhisantoso)

    In [..]/wp-content/plugins/wp-super-cache/wp-cache-phase2.php line 1143, change:

    wp_cache_debug( "wp_cache_post_id_gc clearing cache in {$supercache_home}page/." );
    $supercache_home = get_supercache_dir();
    prune_super_cache( $supercache_home . 'page/', true );

    to

    $supercache_home = get_supercache_dir();
    wp_cache_debug( "wp_cache_post_id_gc clearing cache in {$supercache_home}page/." );
    prune_super_cache( $supercache_home . 'page/', true );
Viewing 1 replies (of 1 total)
  • The topic ‘Undefined variable: supercache_home’ is closed to new replies.