Plesk does not provide Zend Guard Loader pre-installed. However, it can be installed manually, i.e. on Plesk 12.5, Debian-based OS, PHP 5.4:
- Download «ZendGuardLoader» according to PHP version
1wget http://downloads.zend.com/guard/7.0.0/zend-loader-php5.5-linux-x86_64_update1.tar.gz - Extract
ZendGuardLoader.so
library and move it to modules folder
12345cd /tmptar -xzf zend-loader-php5.5-linux-x86_64_update1.tar.gzmv /tmp/zend-loader-php5.5-linux-x86_64/ZendGuardLoader.so /opt/plesk/php/5.5/lib64/php/modules/ - Set correct permissions
123chmod 755 /opt/plesk/php/5.5/lib64/php/modules/ZendGuardLoader.sochown root:root /opt/plesk/php/5.5/lib64/php/modules/ZendGuardLoader.so - Create corresponding
.ini
file with the following content:
123nano /opt/plesk/php/5.5/etc/php.d/zendGuardLoader.ini
Add text: -
1zend_extension=ZendGuardLoader.so
- Restart
php-fpm
service:
1service plesk-php55-fpm restart