Jump to content

PHP Warning:  Module 'memcached' already loaded

Featured Replies

Posted

I started receiving this message repeatedly in php_errorlog ever since I enabled Memcache on my server and in ACP.

Is there something I have done wrong?

PHP Warning:  Module 'memcached' already loaded in Unknown on line 0

constants.php has the following contents:

\define( 'REDIS_ENABLED', false );

\define( 'STORE_METHOD', 'Database' );

\define( 'STORE_CONFIG', '[]' );

\define( 'CACHE_METHOD', 'Memcache' );

\define( 'CACHE_CONFIG', '{"servers":["127.0.0.1: 20116"]}' );

\define( 'CACHE_PAGE_TIMEOUT', 30 );

\define( 'SUITE_UNIQUE_KEY', 'xxxxxxxx' );

Hi,

how did you enable memcached?

Quote

PHP Warning:  Module 'memcached' already loaded in Unknown on line 0

From my own experience this error usually means that the memcached module was included 2 or more times inside the php.ini file.
Another reason for this could be that php was already built with memcached support, so that there's no reason to include it into your php.ini file.

 

In any case, this is a server issue and your webhost should be able to assist you much better with this issue.

  • Author

Yes, thanks!

I just discovered this when I went looking.

The memcached.so module was listed twice.

Once in my local php.ini and once in /usr/local/php73/etc/extensions.ini

Archived

This topic is now archived and is closed to further replies.

Recently Browsing 0

  • No registered users viewing this page.