• Hi,

    I installed WPMU 2.6.3 and the plugin WP Super Cache.
    I followed all the instructions correctly but when i activate the cache, i can’t acces to any of my weblogs.

    The admin interface still works, but not my blogs like https://forums.bloogx.com/ who can’t load.

    The folder cache in wp-content/ is create with meta/ and .htaccess but no supercache/ ? Is it normal ? I tried to create it manually in case, same problem.

    Here my .htaccess

    # BEGIN WPSuperCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    AddDefaultCharset UTF-8
    RewriteCond %{REQUEST_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*=.*
    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_URI} !^.*[^/]$
    RewriteCond %{REQUEST_URI} !^.*//.*$
    RewriteCond %{REQUEST_METHOD} !=POST
    RewriteCond %{QUERY_STRING} !.*=.*
    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
    
    RewriteEngine On
    RewriteBase /
    
    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ /$1/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    Did someone have already this problem or an idea ?
    Thanks

    PS: sorry for my english, i did my best

Viewing 3 replies - 1 through 3 (of 3 total)
  • Looks like you’re running WPMU? What happens when you turn the plugin fully on? That should create the supercache directory automatically.

    I’m about to release a new version with better support for MU.

    Thread Starter djay77

    (@djay77)

    Hello,

    I had already turn the plugin fully on (ON (WP Cache and Super Cache enabled)).

    I tried to change to half on and rechange for ON to regenerate the supercache directory, but nothing.

    Thx for your interest and your work

    Thread Starter djay77

    (@djay77)

    I installed the lastest version of WP Super Cache and now page are correctly generated.

    However, caches are directly generated in cache/ folder (ex: wp-cache-aide.bloogx.com5e8f65c5be8705ae05f0638afda65129.html)

    The folder supercache, is correctly created, with subfolders, but they are all empty. Is it normal ?

    Shouldn’t the pages be generated in supercache/aide.bloogx.com/ in my case ?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Impossible WP Super Cache’ is closed to new replies.