Cloudpanel ionCube Loader enable

Rootali

Cloudpanel Support
Staff member

ionCube Loader​


Attention​


There is currently no ionCube Loader for PHP 8.0 available.
Using ionCube encoded and secured PHP files requires a file called the ionCube Loader to be installed on the web server and made available to PHP.

Enable Loader​


The ionCube Loader extension is being shipped by default for all PHP Versions but disabled for performance reasons.
To enable ionCube Loader for a specific PHP Version, you need to enable it for CLI and FPM:

  1. Open the php.ini for the CLI and FPM:

nano /etc/php/8.3/cli/php.ini
nano /etc/php/8.3/fpm/php.ini

  1. Go to the end of the file and remove the semicolon in the beginning.

;zend_extension=ioncube_loader_lin_8.3.so

  1. Restart the PHP-FPM service:

systemctl restart php8.3-fpm
 
Back
Top