• Hi,

    I installed the plugin WP-Super CACHE on my WordPress 2.6 installation.

    My hosting is OVH with the start1G option (if you know it).

    My .htaccess file is in the root folder and seems correct according to the installation procedure :

    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*s=.*
    RewriteCond %{QUERY_STRING} !.*attachment_id=.*
    RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
    RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{HTTP:Accept-Encoding} gzip
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]
    
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*s=.*
    RewriteCond %{QUERY_STRING} !.*attachment_id=.*
    RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
    RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]
    </IfModule>
    
    # END WPSuperCache
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    For information, on the WP Super cache administration page, i can see this log at the beginning of the page even if wp-content is 777 :

    Warning! wp-content is writeable!

    You should change the permissions on /home.33/e/r/i/ericrebo/www/wp-content/ and make it more restrictive. Use your ftp client, or the following command to fix things:
    chmod 755 /home.33/e/r/i/ericrebo/www/wp-content/

    Additionnaly only this structure is created :

    /www/wp-content/cache/

    The symbolic link advanced-cache.php is present but I don’t know what is behind.

    The wp-cache-config.php file is also present, and seems correct with inside :

    define( 'WPCACHEHOME', ABSPATH .  "wp-content/plugins/wp-super-cache/" ); //Added by WP-Cache Manager

    The supercache folder is missing,I created it after but no effect at the end, my cache administration shows :

    Cache contents

    WP-Cache

    * 0 cached pages
    * 0 expired pages

    WP-Super-Cache

    * 0 cached pages
    * 0 expired pages.

    And no files are generated in the cache folder.

    Do you have ideas to make the plugin works ?

    Thanks for your ideas.
    Eric

  • The topic ‘[Plugin: WP-Cache] WP-CACHE is not working for me’ is closed to new replies.