• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Error installing mencached plesk 12.5 CentOS 6.7

Spoke too soon.

phpinfo doesn't show the module. It shows the path to the module, but it doesn't show below in extension details.

I found that the module was put in "/opt/plesk/php/5.6/lib/php/modules/" without execution permissions, I've changed them and restarted plesk-php56-fpm plus apache2 without luck.

Can someone help?
 
Spoke too soon.

phpinfo doesn't show the module. It shows the path to the module, but it doesn't show below in extension details.

I found that the module was put in "/opt/plesk/php/5.6/lib/php/modules/" without execution permissions, I've changed them and restarted plesk-php56-fpm plus apache2 without luck.

Can someone help?
But have you added module to corresponding ini file with

# echo “extension=memcached.so” > /opt/plesk/php/5.6/etc/php.d/memcached.ini

and reread php handlers:

# plesk bin php_handler --reread

after that?
 
But have you added module to corresponding ini file with

# echo “extension=memcached.so” > /opt/plesk/php/5.6/etc/php.d/memcached.ini

and reread php handlers:

# plesk bin php_handler --reread

after that?

Hi Igor,

yes done that.

In the plesk I see the module activated for all php versions, but doesn't work.

php -m doesn't show the extension, should it show it?
 
You need to check PHP5.6 modules. Something like

# /opt/plesk/php/5.6/bin/php -m

Then go to domain, where PHP5.6 handler is enabled and check memcached output of phpinfo()
 
hummm, seen now that I've this warning, something is defenetly very wrong.

root@server:~# /opt/plesk/php/5.6/bin/php -m | grep memcached
PHP Warning: PHP Startup: Unable to load dynamic library '/opt/plesk/php/5.6/lib/php/modules/memcached.so' - /opt/plesk/php/5.6/lib/php/modules/memcached.so: undefined symbol: memcached_server_micro_version in Unknown on line 0
 
/opt/plesk/php/5.6/lib/php/modules/memcached.so: undefined symbol: memcached_server_micro_version in Unknown on line 0
Looks like module was not correctly compiled or compiled for other php version. Try to re-compile it again.
 
for debian User


1. Installing

# apt-get install memcached php5-memcache

# apt-get install memcached php5-memcached

# /opt/plesk/php/5.6/bin/pecl install memcache

# /opt/plesk/php/5.6/bin/pecl install memcached

# echo "extension=memcache.so" > /opt/plesk/php/5.6/etc/php.d/memcache.ini

# echo "extension=memcached.so" > /opt/plesk/php/5.6/etc/php.d/memcached.ini
# plesk bin php_handler --reread
 
Hi.

Yes, it worked after re-instaling the server again.

But I had to switch it off, I don't know why yet, but with memcached active, I start to have problems in backoffice and stock management.

I' still have to dig on this.

Thank you for your comment.
 
Back
Top