• I tried to uninstall the WP Super Cache plugin to reinstall it.

    The problem is that I cannot delete the “cache” folder under wp-content manually as the folder is owned by apache server.

    To be specific, the FTP client program I am using tells me “unable to remove .htaccess (permission denied)”

    How can I remove an apache-owned-file? (w/ permission 644)

Viewing 1 replies (of 1 total)
  • Create a file in wp-content called “t.php” and put in that file:
    <?php
    unlink( ‘cache/.htaccess’ );
    rmdir( ‘cache’ );
    ?>

    Now call that file on your site with your browser. It should remove both the .htaccess file and cache directory.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Super Cache] Unable to remove the cache folder’ is closed to new replies.