After updating to RC2 I got this message in "Authcache Configuration". But I already have this line in my settings.php:
$conf['cache_inc'] = './sites/all/modules/authcache/authcache.inc';

And previously all works fine with RC1 version.

Comments

Jonah Ellison’s picture

Assigned: Unassigned » Jonah Ellison
Status: Active » Postponed (maintainer needs more info)

Hmm, I can't seem to reproduce this. The code that checks for authcache.inc didn't get changed in RC2. Did anything else in your settings.php file get changed or added?

superfedya’s picture

>Did anything else in your settings.php file get changed or added?

Nope. Nothing.
My settings.php:

<?php
$conf['cache_inc'] = './sites/all/modules/authcache/authcache.inc';
$conf['cache_inc'] = './sites/all/modules/contrib/cacherouter/cacherouter.inc';
$conf['cacherouter'] = array(
  'default' => array(
    'engine' => 'file',
    'servers' => array(),
    'shared' => TRUE,
    'prefix' => '',
    'path' => 'sites/default/files/filecache',
    'static' => FALSE,
    'fast_cache' => TRUE,
  ),
);
// $Id: default.settings.php,v 1.8.2.4 2009/09/14 12:59:18 goba Exp $

/**
 * @file
 * Drupal site-specific configuration file.
...
Jonah Ellison’s picture

Category: bug » support
Status: Postponed (maintainer needs more info) » Active

Ah, there can only be one $conf['cache_inc'] key. The cacherouter.inc value is overwriting authcache.inc. You can either move the cacherouter directory out of contrib and into the modules directory and delete the second $conf['cache_inc'] line, or try replacing the second line to:

$conf['cache_inc_via_authcache'] = './sites/all/modules/contrib/cacherouter/cacherouter.inc';
superfedya’s picture

Ok, now all works fine. Thanks!

Jonah Ellison’s picture

Component: Code » Documentation
Status: Active » Closed (fixed)