Hi,

I installed yesterday commons-7.x-3.16-core on Debian Squeeze with packages
- php5-memcache (PECL)
- libevent
- memcached (daemon)
When I activate Commons Memcache and Memcache Admin, I see on /?q=admin/reports/status the message :

"Memcache Inconnu
There is a problem with your memcache configuration, check the Drupal logs for additional errors. Please review README.txt for help resolving the following issue:
Failed to load required file profiles/commons/modules/contrib/memcache/dmemcache.inc."

I can't find what to install or what to configure to make it work. Can anyone help ?
I'm ready to resume our exchanges to improve the documentation.

Comments

golddragon007’s picture

Well I set this:

$conf['cache_backends'][] = 'sites/all/modules/memcache/memcache.inc';
$conf['lock_inc'] = 'sites/all/modules/memcache/memcache-lock.inc';
$conf['memcache_stampede_protection'] = TRUE;
$conf['cache_default_class'] = 'MemCacheDrupal';

// The 'cache_form' bin must be assigned to non-volatile storage.
$conf['cache_class_cache_form'] = 'DrupalDatabaseCache';

// Don't bootstrap the database when serving pages from the cache.
$conf['page_cache_without_database'] = TRUE;
$conf['page_cache_invoke_hooks'] = FALSE;

to my settings.php like the readme sad, but I get this error:
There is a problem with your memcache configuration, check the Drupal logs for additional errors. Please review sites/all/modules/memcache/README.txt for help resolving the following issue:
Failed to load required file sites/all/modules/memcache/dmemcache.inc.

However, the file is there and exist. If I'm in the site's/drupal root, and I give this command:
cat sites/all/modules/memcache/dmemcache.inc
I get back the file.

After many hours, I found, I need to set my error handeling at the hosting to "All errors, except E_DEPRECATED and E_STRICT (Production)" /E_ALL & ~E_DEPRECATED & ~E_STRICT/ and now works...

Devin Carlson’s picture

Component: Documentation » Miscellaneous
Category: Bug report » Support request
Priority: Major » Normal
Status: Active » Fixed

Fixed per #1.

Status: Fixed » Closed (fixed)

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