BUG: wp_cache_remove_index() causes “No such file or directory” error
-
Hello!
Great plugin.
There’s an issue that affects WP Super Cache v1.5.5 and some previous versions. Calling the wp_cache_remove_index() function causes “No such file or directory” error at wp-cache.php line 2264:
unlink( $directory . “/index.html” );
However at line 2263 it checks existence of another file:
if ( is_file( $directory . “/meta/index.html” ) ) {
So line 2264 should delete the same file:
unlink( $directory . “/meta/index.html” );
Can this be fixed, please?
Thanks!
George
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘BUG: wp_cache_remove_index() causes “No such file or directory” error’ is closed to new replies.