My Reporting page says that "MemcacheStorage class is not loaded". I added following to the Settings.php:
$conf['cache_backends'][] = 'sites/all/modules/memcache_storage/memcache_storage.inc';
$conf['cache_default_class'] = 'MemcacheStorage';
$conf['cache_class_cache_form'] = 'DrupalDatabaseCache';
Reports page says:
MemcacheStorage class is not loaded. See README.txt and make sure that settings.php is configured properly.
Memcache Storage: PECL Memcache extension Version: 3.0.6
Memcache Storage: PECL Memcached extension PECL Memcached extensions is not installed on your server.
Memcache Storage: extension is used Memcache
Memcache Storage: server 127.0.0.1:11211 Connected
Any idea? I tried with latest dev version.
Comments
Comment #1
fortis commentedtry to check settings.php permissions
Comment #2
spleshkaPlease, provide me full path to memcache_storage folder on a server.
Comment #3
fox_01 commentedi don't change the permissions on the settings.php but have taken the write protection. the write protection will be set automatically by drupal back to normal.
the full path of my memcache storage module directory is:
D:\xampp\htdocs\sites\all\modules\memcache_storage
while htdocs is my www root
Comment #4
spleshkaHm, default config should work. Please, attach a whole settings.php here. Possibly bug is there.
Comment #5
fox_01 commentedI have clean default settings.php with only this 3 lines attached at the bottom and a newline at the end for the reason some module files require this.
Comment #6
spleshkaIt doesn't make sense to me. This configuration line works properly on a numerious projects. Try to make clean installation of this module and see if problem persists. Or you may provide access for your site to me. I can take a look at your site.
Comment #7
fox_01 commentedmaybe its a problem with my apc file caching. i will try it this way
Comment #8
spleshkaAny new information here?
Comment #9
fortis commentedtry
include_once('sites/all/modules/memcache_storage/memcache_storage.inc');
before $conf['cache_backends'][]. works for me
Comment #10
spleshkaBut this doesn't make sense. $conf['cache_backeds'][] loads all files before using cache api.
Comment #11
fortis commentedСори, на родном: у меня на двух одинаковых версиях друпала (7.9, но разный набор модулей) один конфиг работает на одном и не работает на другом.
И есть проект у меня на сервере, там последний друпал и оно не работает с $conf['cache_backeds'][] - ругается на то, что в cache.inc класс мемкеша не известен еще. Можем в скайпе/джабере связаться и попробовать найти причину, так как судя по всему это не только у меня.
Comment #12
spleshka@fortis, sorry, but I'll answer in English.
Did you try to do the same with other cache backends? For example, with Memcache API/
Comment #13
spleshkaFor no activity, leaving this issue postponed.
Comment #14
fortis commentedI found cause of the problem - Domain Access module,
it works, after I removed these lines from the file:
and that works for other cache backends
//sfme
Comment #15
PedroMiguel commentedYou dont need to remove the domain access include.
Just move that include to the end of settings.php (put on the last line) and all works.
Comment #16
jason.fisher commented(removed)
Comment #17
spleshkaClose issue because of no activity here.
Comment #18
annya commentedI run into this problem too.
The reason of it on my server was APC's option apc.stat = 0(as recommended in documentation for better performance). Don't forget to clean APC's cache after you change files. I hope it will help somebody.
Comment #19
spleshkaYeah, apc.stat=0 disables tracking of file changes. That's why your settings.php change wasn't fetched by apc. To make this work with existing config you should reload your web server (apache/php-fpm). Otherwise just set apc.stas=1 and forget about this problem. Performance benefit is not that big there.
Comment #20
WJNLLC commentedMemcache Storage class MemcacheStorage class is not loaded.
See README.txt and make sure that settings.php is configured properly.
Comment #21
spleshkaCould you please provide more details about your issue?
Comment #22
vedpareek commentedHello,
I am getting below error on my site status page.
Memcache Storage class MemcacheStorage class is not loaded.
See README.txt and make sure that settings.php is configured properly.
My site is on nginx. I have configured properly settings.php on my website.
Thanks
Comment #23
yuseferi commentedI nistalled memcache on server , memcache and memcache storage modules are enabled
then put
in end of settings.php
but when I check `admin/reports/status` I saw "Memcache Storage class" where is the problem?
Comment #24
SkyBuzz commentedI'm facing this issue. If I enable debug mode or add configuration for memcached extenstion.
Here is my configuration
And the status report
Comment #25
SkyBuzz commentedAny update here.???