I have a multi site setup with drupal in a sub directory on root. so i have:
public_html
--drupal
--newsite (subdomain symlinks to the drupal folder)
--index.html and other static files of root.

Im working this on the subdomain to change to main domain when i go live.

I am using the boosted2.txt setup as pasted below in my newsite/.htaccess, not in the drupal folder. I tried putting the .htaccess boost code in the drupal folder, status report coughs. Now, it's in the newsite/.htaccess and status report is fine. With Cache in the newsite/cache folder, i see the files created in there fine, but does not get served.

Can someone please help me? I have been on this for 2 agonizing days : (

Settings are:

  ### BOOST START ###

  # Gzip Cookie Test
  RewriteRule ^(.*)boost-gzip-cookie-test\.html cache/perm/boost-gzip-cookie-test\.html\.gz [L,T=text/html,E=no-gzip:1]

  # GZIP - Cached css & js files
  RewriteCond %{HTTP_COOKIE} !(boost-gzip)
  RewriteCond %{HTTP:Accept-encoding} !gzip
  RewriteRule .* - [S=2]
  RewriteCond %{DOCUMENT_ROOT}/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css\.gz -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css\.gz [L,QSA,T=text/css,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js\.gz -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js\.gz [L,QSA,T=text/javascript,E=no-gzip:1]

  # NORMAL - Cached css & js files
  RewriteCond %{DOCUMENT_ROOT}/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css [L,QSA,T=text/css]
  RewriteCond %{DOCUMENT_ROOT}/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js [L,QSA,T=text/javascript]

  # Caching for anonymous users
  # Skip boost IF not get request OR uri has wrong dir OR cookie is set OR https request
  RewriteCond %{REQUEST_METHOD} !^(GET|HEAD)$ [OR]
  RewriteCond %{REQUEST_URI} (^/(admin|cache|misc|modules|sites|system|openid|themes|node/add|comment/reply))|(/(edit|user|user/(login|password|register))$) [OR]
  RewriteCond %{HTTP_COOKIE} DRUPAL_UID [OR]
  RewriteCond %{HTTPS} on
  RewriteRule .* - [S=7]

  # GZIP
  RewriteCond %{HTTP_COOKIE} !(boost-gzip)
  RewriteCond %{HTTP:Accept-encoding} !gzip
  RewriteRule .* - [S=3]
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz [L,T=text/html,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml\.gz [L,T=text/xml,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json\.gz [L,T=text/javascript,E=no-gzip:1]

  # NORMAL
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html [L,T=text/html]
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml [L,T=text/xml]
  RewriteCond %{DOCUMENT_ROOT}/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json [L,T=text/javascript]

  ### BOOST END ###

Comments

jumoke’s picture

I have used other methods, from pasting the Boost rules from the performance page and tried every combination of the settings, no luck. please help.

wobbler’s picture

I haven't run Apache for years so I don't know specifics, but I would just do the normal things to check where the process is failing. The static files are being generated so that means that Boost is working ok, the problem is with the Apache config.

The first first thing to do is to make sure you are not using a logged in browser session. When working with boost rules I use firefox or chrome logged in and use IE not logged in. As I don't use IE all the time I can clear the cache as many times as I want without losing my browsing history etc.

What happens if you directly access the static page?
ie. http://www.example.com/newsite/cache/normal/www.example.com/_.html

Is mod_rewrite activated for the newsite location??

I am not sure what the default behaviour of Apache is these days, or what your config is but you need to make sure that Apache is configured to read htaccess files in each subdirectory. It can be configured so it will only read from the config files at start up, you need it to look for htaccess files each time it accesses a subdirectory. From memory I think that is one of the Options directives.

Setup a seperate access log for the newsite location to ensure that apache is serving the files from under that sub directory and not from the drupal directory, as you said it is a symlink I believe that there is an Option directive that can make Apache work back through symlinks to the original directory, which could make it use a different htaccess config maybe??

The access log should log all the varables you are using in the htaccess, document_root request_uri http_host etc. you may need to use the boosted1.txt instead?

If all that looks ok then you need to setup an error log to debug the rewrite rules.

wobbler’s picture

You do have the document_root set correctly for the subdomain newsite? If not the rules should be
RewriteCond %{DOCUMENT_ROOT}/newsite/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html -s

Once you are sure that Apache is serving the files from under the newsite directory, is picking up the directory based htaccess file and you have the access logs logging the requests coming in I would also reduce the number of rules to start with too.

To test that the html file is being served you only need the first two lines of the #NORMAL section, once you get that working properly then you can start building up the normal css and js, then the gzip rules should follow.

More than likely there will be something in your main apache config which is either passing the wrong http_host or stopping the htaccess file being read. Once you fix those the rules should be standard.

jumoke’s picture

Hi wobbler, thank you so much for your sparing me your time and attention on this. I am very grateful!!!

To answer your questions:
I use IE normally as my anonymous browser, like you, i never log in with IE as i rarely use it so i am sure i am not logged in and i clear my IE cache everything i make a setting change.

When i access http://www.example.com/newsite/cache/normal/www.example.com/_.html, I get my file loaded perfectly.

Yes mod_rewrite is activated --> RewriteEngine On

I have tried the boosted1.txt instead again (after many times), and cleared all files and cache now and cleared browser as well. No luck, still the same effect.

*sighs, i'll setup the error logs and see
this is insane : (

jumoke’s picture

Hi wobbler :)
Thanks so much again. I am indebted to you.

Here's what i have...i can send u the info in an email if u have a minute to take a look for me please? Its not super sensitive info, it's my church site

#
# Apache/PHP/Drupal settings:
#

# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
  Order allow,deny
</FilesMatch>

# Don't show directory listings for URLs which map to a directory.
Options -Indexes

# Follow symbolic links in this directory.
# For security reasons, Option followsymlinks cannot be overridden.
#Options +FollowSymLinks
Options +SymLinksIfOwnerMatch

# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php

# Force simple error message for requests for non-existent favicon.ico.
<Files favicon.ico>
  # There is no end quote below, for compatibility with Apache 1.3.
  ErrorDocument 404 "The requested file favicon.ico was not found.
</Files>

# Set the default handler.
DirectoryIndex index.html index.php

# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.

  Options All -Indexes
  AddType x-mapp-php5 .php
  AddHandler x-mapp-php5 .php
#  php_value memory_limit 128M - throws errors
  RLimitMem 128000000
  
# PHP 4, Apache 1.
<IfModule mod_php4.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>

# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   0
</IfModule>

# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
  # Enable expirations.
  ExpiresActive On

  # Cache all files for 2 weeks after access (A).
  ExpiresDefault A1209600

  <FilesMatch \.php$>
    # Do not allow PHP scripts to be cached unless they explicitly send cache
    # headers themselves. Otherwise all scripts would have to overwrite the
    # headers set by mod_expires if they want another caching behavior. This may
    # fail if an error occurs early in the bootstrap process, and it may cause
    # problems if a non-Drupal PHP file is installed in a subdirectory.
    ExpiresActive Off
  </FilesMatch>
</IfModule>

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine On

  # If your site can be accessed both with and without the 'www.' prefix, you
  # can use one of the following settings to redirect users to your preferred
  # URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
  #
  # To redirect all users to access the site WITH the 'www.' prefix,
  # (http://example.com/... will be redirected to http://www.example.com/...)
  # adapt and uncomment the following:
  # RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
  # RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
  #
  # To redirect all users to access the site WITHOUT the 'www.' prefix,
  # (http://www.example.com/... will be redirected to http://example.com/...)
  # uncomment and adapt the following:
   RewriteCond %{HTTP_HOST} ^www\new.excalibur\.org$ [NC]
   RewriteRule ^(.*)$ http://new.excalibur.org/$1 [L,R=301]

  # Modify the RewriteBase if you are using Drupal in a subdirectory or in a
  # VirtualDocumentRoot and the rewrite rules are not working properly.
  # For example if your site is at http://example.com/drupal uncomment and
  # modify the following line:
  # RewriteBase /drupal
  #
  # If your site is running in a VirtualDocumentRoot at http://example.com/,
  # uncomment the following line:
   RewriteBase /

  ### BOOST START ###

  # Gzip Cookie Test
  RewriteRule ^(.*)boost-gzip-cookie-test\.html cache/perm/boost-gzip-cookie-test\.html\.gz [L,T=text/html,E=no-gzip:1]

  # GZIP - Cached css & js files
  RewriteCond %{HTTP_COOKIE} !(boost-gzip)
  RewriteCond %{HTTP:Accept-encoding} !gzip
  RewriteRule .* - [S=2]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css\.gz -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css\.gz [L,QSA,T=text/css,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js\.gz -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js\.gz [L,QSA,T=text/javascript,E=no-gzip:1]

  # NORMAL - Cached css & js files
  RewriteCond %{DOCUMENT_ROOT}/new/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css [L,QSA,T=text/css]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.js [L,QSA,T=text/javascript]

  # Caching for anonymous users
  # Skip boost IF not get request OR uri has wrong dir OR cookie is set OR https request
  RewriteCond %{REQUEST_METHOD} !^(GET|HEAD)$ [OR]
  RewriteCond %{REQUEST_URI} (^/(admin|cache|misc|modules|sites|system|openid|themes|node/add|comment/reply))|(/(edit|user|user/(login|password|register))$) [OR]
  RewriteCond %{HTTP_COOKIE} DRUPAL_UID [OR]
  RewriteCond %{HTTPS} on
  RewriteRule .* - [S=7]

  # GZIP
  RewriteCond %{HTTP_COOKIE} !(boost-gzip)
  RewriteCond %{HTTP:Accept-encoding} !gzip
  RewriteRule .* - [S=3]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz [L,T=text/html,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml\.gz [L,T=text/xml,E=no-gzip:1]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json\.gz -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json\.gz [L,T=text/javascript,E=no-gzip:1]

  # NORMAL
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html [L,T=text/html]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.xml [L,T=text/xml]
  RewriteCond %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json -s
  RewriteRule .* cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.json [L,T=text/javascript]

  ### BOOST END ###

# $Id: boosted2.txt,v 1.1.2.29 2010/09/21 17:24:31 mikeytown2 Exp $

# $Id: boosted1.txt,v 1.1.2.30 2010/09/21 17:24:31 mikeytown2 Exp $

  # Rewrite URLs of the form 'x' to the form 'index.php?q=x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_URI} !=/favicon.ico
  RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

# $Id: .htaccess,v 1.90.2.5 2010/02/02 07:25:22 dries Exp $

jumoke’s picture

On the boost status block. I get

cache/normal/new.excalibur.org/about_.html
Does not exist.
Expire In: 59 min 54 sec
Cache Age: 6 sec

hmn...something does not exist :/ but i can navigate to http://new.excalibur.org/cache/normal/new.excalibur.org/about_.html

mikeytown2’s picture

Note to self:
I need a better status report checking mechanism. Put a live file in the boost dir with some crazy name. Test to see if that url comes back. meta tags for no follow etc needed on test file.

jumoke’s picture

Omigod!!! I have tried everything, NO JOY. I even have all absolute links now. Still not displaying. I checked the access logs and everything seems fine. I am going to have to disable boost for now and recycle back to this another day. If anyone can think of any other ideas, please let me know. Thanks alot Wobbly for kindness

jumoke’s picture

Wobbly, Mikey, may I send my login to either of you to check my setup for me please? I hate to give up on this : ( it's 2 days already.

mkalbere’s picture

1) clean your browser cache to sure sure you don't have any remaining cookies
2) most certainly your variables are wrong for ex in : %{DOCUMENT_ROOT}/new/cache/normal/%{HTTP_HOST}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz -s you have to debug this, which is not easy ...
to debug I used : (ex to print the DOCUMENT_ROOT

before your rewrilerules
RewriteRule ^(.*)$ debug.php?mes=%{DOCUMENT_ROOT} [L,QSA]

in debug.php
<?php
echo $_REQUEST['mes'];

Not very clean, not very efficient .. but at least you get some info.

3) You could also hard code DOC_ROOT, HOST etc ... (but in that case it will be very hard to have a multi-site install.)

jumoke’s picture

i think it's working.....*faints*

brb

jumoke’s picture

Wow...it's working now :D
mkalbere, thanks for that tip!!!

I created a phpinfo.php file in my multisite directory and put in the following to print out my info.

<?php
echo $_SERVER['DOCUMENT_ROOT'] . ' - ' . $_SERVER['HTTP_HOST'] . ' - ' . $_SERVER['REQUEST_URI']  . ' - ' . $_SERVER['SERVER_NAME'];
?>

Then i realized SERVER['DOCUMENT_ROOT'] was printing out something shady like "usr/htdocs" wow!!! So i hard coded the absolute path to my base directory in boosted2.txt to get the following:

  RewriteCond /homepages/7/xxxxxxxxx/htdocs/new/cache/normal/%{SERVER_NAME}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz -s
  RewriteRule .* cache/normal/%{SERVER_NAME}%{REQUEST_URI}_%{QUERY_STRING}\.html\.gz [L,T=text/html,E=no-gzip:1]

my .htaccess is in the multisite directory.

I added boosted rules into the drupal directory .htaccess as well, i used the boosted1.txt for that. I don't know if including boosted rules in my drupal directory has any effect all i know is that it's working and this has made my day after 3 agonizing days!!! Oh well. So in my drupal directory, i have

  RewriteCond /homepages/7/xxxxxxxxx/htdocs/drupal/cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css -s
  RewriteRule .* cache/perm/%{HTTP_HOST}%{REQUEST_URI}_\.css [L,QSA,T=text/css]

And now my site is flying on my multisite install.

Thank you wobbler and mkalbere for your time and attention to helping me with this. And thanks mikey for this amazing module.

wobbler’s picture

So it looks like the document_root is not set correctly. You should set that as you may find other php scripts you use needing that to be correct.
Have a look here
http://httpd.apache.org/docs/2.2/mod/core.html#documentroot

Then you could change the rule back to use the variable rather than the hard coded path. It would make it easier if you start running more sites from the same setup.

Also this regex doesn't look correct, it is in the section trying to redirect non www. to new. ??

 RewriteCond %{HTTP_HOST} ^www\new.excalibur\.org$ [NC]
 RewriteRule ^(.*)$ http://new.excalibur.org/$1 [L,R=301]

I would of thought that the rule would match people coming to the site using wwwnew.excalibur.org which I don't think you are trying to do. To redirect people coming to www.excalibur.org to new.excalibur.org you should use

 RewriteCond %{HTTP_HOST} ^www\.excalibur\.org$ [NC]
 RewriteRule ^(.*)$ http://new.excalibur.org/$1 [L,R=301]

I would not re-drect people to a non www. or new. version of the site for Drupal.

wobbler’s picture

http://drupal.org/node/1069182#comment-4133206

I like this tip. If Drupal admins are looking for the phpinfo() information you can get it by going to Reports -> Status Report and clicking on the link telling you the php version. At the bottom of the page is the PHP Server Variables section which should tell you all the information you need.

http://www.example.com/admin/reports/status/php

jumoke’s picture

Hi Wobbler :) thank you so much for taking the time to educate me on all this. I really appreciate and have learned alot in the pain of installing this boost module. Thanks for the link, you are right...i should and will fix my document root now

In the regex: I am simply trying to remove www from the domain name: Here is what i have now?

   RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
   RewriteRule ^(.*)$ http://%1/$1 [L,R=301]

I wonder if there is a tutorial or translation learning docs for .htacess variables somewhere you can point me to?

jumoke’s picture

Hmn..Great info..on the php status link. I never knew...lol

mkalbere’s picture

@Excalibur
Try this :
RewriteCond %{HTTP_HOST} ^www.*$ [NC]
RewriteRule ^(.*)$ http://YOURDOMAIN/$1 [L,R=301]

jumoke’s picture

Hi mkalbere, thanks okay, i'll try that.

One other issue or concern:
When i clear the cache using the buttons on admin/settings/performance/boost and admin/settings/performance. It will show the cached pages count from whatever number of pages to now 0 pages cached, so it appears to have cleared, however the files do not get deleted from the cache folder. In other words, the physical cache files doesn't clear and the old boosted pages still get served, long after cleaning my IE browser (even/loggin in and logging off). Is this normal? I've been having to go into the cache folders to manually delete. This is time consuming

mkalbere’s picture

did you look at your logs.
Try to delete cache (admin/settings/performance/boost) and then directly go to /admin/reports/dblog to see if anything went wrong.

Here is a small proc that empty everything .. if it can help :
function deletecachestatic(){
drupal_flush_all_caches();
boost_cache_clear_all_db();
boost_cache_delete(TRUE);
drupal_set_message('Cache cleared.');
drupal_goto();
})

jumoke’s picture

by dblog says it's working:
boost 03/07/2011 - 13:01 Flushed ALL files from static page cache. Excalibur

It seems to work, thank you

mkalbere’s picture

no it's PHP code ... so I supposed your are not a developper ... maybe the easiest (and pretty dirty also ..)

in the template.php of your theme at the beginning but after <?php

<?php
if (isset($_REQUEST['cleancache'])){
drupal_flush_all_caches();
boost_cache_clear_all_db();
boost_cache_delete(TRUE);
drupal_set_message('Cache cleared.');
drupal_goto();
}

and call any page from your site http://XXXX/?cleancache=1
don't forget to remove/comment after

jumoke’s picture

Okay thanks i'll try that.
New to php but a .net/c# developer now doing php

So this will mean that i'll have to run that code to clear my cache each time? I guess it's not so bad, better than doing it manually...thanks mk! I owe you alot :)

bgm’s picture

Status: Active » Fixed

Old issue, closing.

For the record, we can clear cache using "admin_menu", drush, admin/settings/performance/boost or other methods. (although I did not read the whole thread to be honest)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.