I don't see the admin interface, as demonstrated here:

http://drupal.org/node/330237

There simply isn't an item in administration for CacheRouter. The module is installed and configured, but I simply don't see it in the interface.

Comments

XerraX’s picture

dito

Flying Drupalist’s picture

Same here!

artscoop’s picture

It's because the module does not need an admin interface.

Flying Drupalist’s picture

So it doesn't have one? There's nothing wrong?

artscoop’s picture

Yep, nothing wrong. The string you have to put in your settings.php does the job.

otsuarez’s picture

sorry if this seems obvious but, then, what's the purpose of the screenshot? a clarification note would be helpful, i also tried to find it ;)

Flying Drupalist’s picture

Status: Active » Closed (works as designed)

I think I read somewhere that's a D7 screen.

sidharth_k’s picture

subscribing

kentr’s picture

Um, yeah. That's pretty confusing. I looked around for a bit trying to find that, too.

kristen pol’s picture

I found that confusing too! But, then looked in the code and saw there was no cacherouter_menu so thus no pages associated with it. Maybe good to at least have a help page that explains the settings.php changes.

Kristen

ndm’s picture

I found that confusing too!

illmatix’s picture

yeah not completely clear. easy set up though :)

ebrueggeman’s picture

Definitely need an admin screen or at least a confirmation message. Twenty precious minutes lost...

alexander allen’s picture

I also spent some time looking for the "Cache Router admin" that is presented in the screenshot but nowhere to be seen in the D6 installation. What's up with that? Is it available or not?

finn lewis’s picture

Doh! Me too!

carvalhar’s picture

me too! another one that thougth that the module had a problem because there isn't admin page with charts.

idflorin’s picture

"Cache Router admin" it's not available

Junro’s picture

so, we have nothing to configure?

Just install it and add the code in stettings.php?

kentr’s picture

@junro:

You must configure, but only from within settings.php - not in any admin pages.

Junro’s picture

Sure I added:

$conf['cache_inc'] = './sites/all/modules/contrib/cacherouter/cacherouter.inc';
$conf['cacherouter'] = array(
  'default' => array(
    'engine' => 'db',
    'servers' => array(),
    'shared' => TRUE,
    'prefix' => '',
    'path' => 'sites/default/files/filecache',
    'static' => FALSE,
    'fast_cache' => TRUE,
  ),
);

No others changes in setting.php are necessary?

in: http://groups.drupal.org/node/21897

I read for the cache router module:

Performance gain:
Moderate to very high, depends on combinations of options

Anonymous / authenticated users:
Depends on options

What are these options?

kentr’s picture

@junro: There's documentation here and there. I don't mean to sound snotty, but it's helpful when issues are isolated in the tickets. This ticket is specifically about the absence of the admin screen, and it would get off track to discuss the configuration / setup of the module in this ticket.

Sorry if I led you on. I only meant to confirm your question of whether or not there's an admin screen.

kenorb’s picture