Created
February 3, 2010 17:35
-
-
Save fleeting/293810 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# WP SUPER CACHE 0.8.9.1 | |
function wpcache_broken_message() { | |
if ( false == strpos( $_SERVER[ 'REQUEST_URI' ], 'wp-admin' ) ) | |
echo "<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->"; | |
} | |
if ( !include_once( '/var/www/wp-content/plugins/wp-super-cache/' . 'wp-cache-phase1.php' ) ) { | |
if ( !@is_file( '/var/www/wp-content/plugins/wp-super-cache/' . 'wp-cache-phase1.php' ) ) | |
register_shutdown_function( 'wpcache_broken_message' ); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment