• On supercache advance setting page there is a link mentioning “DO NOT CACHE PAGE secret key” and the key has a link.

    A user may get 404 error if his wordpress installation dir is different from site url.

    In file wp-super-cache/wp-cache.php
    <?php printf( __( '<strong>DO NOT CACHE PAGE</strong> secret key: <a href="%s">%s</a>', 'wp-super-cache' ), trailingslashit( get_bloginfo( 'wpurl' ) ) . "?donotcachepage={$cache_page_secret}", $cache_page_secret ); ?>

    may be:

    <?php printf( __( '<strong>DO NOT CACHE PAGE</strong> secret key: <a href="%s">%s</a>', 'wp-super-cache' ), trailingslashit( get_bloginfo( 'url' ) ) . "?donotcachepage={$cache_page_secret}", $cache_page_secret ); ?>

    Because site url may be different from wordpress installation url.

    https://www.ads-software.com/extend/plugins/wp-super-cache/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Super Cache] Possible low priority BUG: DO NOT CACHE PAGE secret key showing wrong link’ is closed to new replies.