• 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.

Zend Guard Loader on CentOS 7

B

bergkuh

Guest
I'm trying to get Zend GuardLoader running on a Subdomain. I've installed PHP 5.6.17 (Subdomain) and PHP 7.0.2 (Main domain). I searched the forum and tried the following:

Code:
wget http://downloads.zend.com/guard/7.0.0/zend-loader-php5.6-linux-x86_64.tar.gz
tar -xvf zend-loader-php5.6-linux-x86_64.tar.gz
rm zend-loader-php5.6-linux-x86_64.tar.gz
cd zend-loader-php5.6-linux-x86_64
mv ZendGuardLoader.so /opt/plesk/php/5.6/lib64/php/modules/ZendGuardLoader.so

vi /opt/plesk/php/5.6/etc/php.d/05-zend-loader.ini
; Load Zend Guard extension.
zend_extension=ZendGuardLoader.so

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

...
[Zend Modules]
Zend Guard Loader
Zend OPcache
the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured)

So far the 05-zend-loader.ini is loaded in the PHP info, but the Zend Guard part is missing and of course the app which is needing Zend Guard is not running. What's wrong with my setup? Many thanks in advance!
 
Hi bergkuh,

you have to enable it - just add zend_loader.enable=1 after zend_extension=ZendGuardLoader.so...
 
Hi ehrgeiz,

I've figured out that Zend Guard Loader is only running while I've activated FPM by Apache or nging. While I've activated FastCGI by Apache the module don't get loaded... BUT while activating FPM I'm getting an 503 (Apache) or 502 (nginx) error...
 
Back
Top