Undefined index
-
Hello,
Im having hard time as the instance running with wp-super cache combined with maxcdn is getting Error 330 (net::ERR_CONTENT_DECODING_FAILED)
When inspecting the apache log, there is:
PHP Notice: Undefined index: If-Modified-Since in /var/www/wp-content/plugins/wp-super-cache/wp-cache-phase1.php on line 235
Which leads to
// don’t try to match modified dates if using dynamic code.
if ( $wp_cache_mfunc_enabled == 0 && $wp_supercache_304 ) {
if ( function_exists( ‘apache_request_headers’ ) ) {
$request = apache_request_headers();
$remote_mod_time = $request[ ‘If-Modified-Since’ ];
} else {
if ( isset( $_SERVER[ ‘HTTP_IF_MODIFIED_SINCE’ ] ) )
$remote_mod_time = $_SERVER[ ‘HTTP_IF_MODIFIED_SINCE’ ];
else
$remote_mod_time = 0;Can you help me solve this issue please?
- The topic ‘Undefined index’ is closed to new replies.