Cloudpanel ionCube Loader enable

Rootali

Junnier Sysadmin
Staff member
Joined
Mar 18, 2025
Messages
56
Solutions
26
Points
61
Age
31
Location
Trabzon

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