Control Web Panel

WebPanel => PHP => Topic started by: Administrator on May 27, 2014, 11:01:10 AM

Title: How to install ioncube loader in PHP on CentOS linux
Post by: Administrator on May 27, 2014, 11:01:10 AM
Ioncube is located at :
/usr/local/ioncube

php.ini  location:
/usr/local/php/php.ini

Your PHP version must match ioncube version
eg. PHP 5.5 will use file: ioncube_loader_lin_5.5.so
eg. PHP 5.4 will use file: ioncube_loader_lin_5.4.so
eg. PHP 5.3 will use file: ioncube_loader_lin_5.3.so

to include ioncube in php.ini first select version using ls command:
Code: [Select]
php -v
ls /usr/local/ioncube


to include eg file "ioncube_loader_lin_5.4.so" in PHP 5.4 use this command:
Code: [Select]
echo "zend_extension = /usr/local/ioncube/ioncube_loader_lin_5.4.so" >> /usr/local/php/php.ini
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: margeslt on December 16, 2015, 03:42:55 PM
I read everything, and pointed the way as specified in your manual:
zend_extension = /usr/local/ioncube/ioncube_loader_lin_5.4.so but him is not work  :'(

I downloaded separately incube and set the path to php.ini:
zend_extension = / usr / lib64 / extensions / no-debug-non-zts-20131226 / ioncube_loader_lin_5.6.so
But it does not work too.
What could be the problem?
1:
Image removed by the security of SiteLock seal

2:
Image removed by the security of SiteLock seal

3:
Image removed by the security of SiteLock seal]
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: Glenn on December 17, 2015, 09:04:47 AM
You can try installing it from CWP Admin under -- PHP Settings --> PHP Addons
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: reishi on January 18, 2016, 08:07:00 AM
doesnt support php7.1.0-dev
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: become on August 31, 2017, 02:48:11 PM
How can I use IonCube Loader with version switcher ?
J have compiled 5.3 to 7.1 PHP versions but see only ioncube_loader_lin_ for 5.6 and 7.0 PHP version.

Ig user change PHP version by htacces file how he can enable iocvube ?
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: become on August 31, 2017, 04:09:16 PM
Ok. I have installed all ioncube versions and modified all php.ini files in opt
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: jeffshead on February 19, 2018, 10:22:33 PM
Ok. I have installed all ioncube versions and modified all php.ini files in opt
Can you please explain the steps you performed to get this working. I ran into the same exact issue in your previous post.
Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: jeffshead on February 20, 2018, 08:32:20 PM
The following worked for me:
(http://forum.centos-webpanel.com/centos-webpanel-bugs/bug-on-php-builder/msg14787/#msg14787)
Code: [Select]
yum clean all
rm -rf /var/cache/yum
yum update all -y
That downloaded the missing ioncube loader files. I did not have to add anything to php.ini.

Title: Re: How to install ioncube loader in PHP on CentOS linux
Post by: middoweb on January 17, 2019, 04:01:26 PM
The following worked for me:
(http://forum.centos-webpanel.com/centos-webpanel-bugs/bug-on-php-builder/msg14787/#msg14787)
Code: [Select]
yum clean all
rm -rf /var/cache/yum
yum update all -y
That downloaded the missing ioncube loader files. I did not have to add anything to php.ini.

Good bless you  ::)