• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Issue How to Install ionCube Loader for Plesk PHP 8.0?

mdraselkhan

New Pleskian
Hello,

When I change the PHP version to 8.0, getting ionCube Loader missing error. I'm using WHMCS which is ionCube Loader that must need to be installed. When I run the following command no output is showing, which means the ionCube Loader is not installed.

$ apt-cache search plesk-php80 | grep ioncube

After that, I try by creating "00-ioncube-loader.ini" file manually on the "/opt/plesk/php/8.0/etc/" directory & adding the following contents on that file, but not working.

zend_extension=ioncube_loader_lin_8.0.so

Is there any way to do it?

Thanks!
 
If I'm not mistaken, ionCube Loader does not currently support PHP 8.
 
Ioncube Loader for PHP 8.1 is available!
Ioncube Loaders 12.0.0 have been issued on 2022-08-05 (3 days ago). Along with former PHP versions, up to 7.4, it supports PHP 8.1 encrypted by Ioncube Encoder 12.0.0.
 
Last edited by a moderator:
Install ioncube 8.1 to plesk

wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar -xvf ioncube_loaders_lin_x86-64.tar.gz
/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib64/php/modules/ioncube_loader_lin_8.1.so
echo "zend_extension=ioncube_loader_lin_8.1.so" >> /opt/plesk/php/8.1/etc/php.ini
service httpd restart && service plesk-php81-fpm restart
/opt/plesk/php/8.1/bin/php -v | grep -i ioncube
 
@mmhospedagem this line not work for me >
/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib64/php/modules/ioncube_loader_lin_8.1.so

the directory "lib64" are not found > on my Plesk is "lib" only.

/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib/php/modules/ioncube_loader_lin_8.1.so
 
Back
Top