can somebody guilde me step by step of ioncube installtion from SSH?

seachen

Verified User
Joined
Feb 3, 2007
Messages
491
i have a dedicated server which using DA. it not support ioncube.

may i know how to install it?

thanks so much
 
Assuming your OS is linux...

Download url : http://www.ioncube.com/loaders.php

# wget [linux loader tar.gz url here] (make sure you choose correct arch 32 or 64 bit)
# tar zxvf ion*
# cd ion*
# cp ioncube_loader_lin_[your php version].so /usr/local/lib/php/extensions/
# nano /usr/local/lib/php.ini
look for extensions section
add :
zend_extension=/usr/local/lib/php/extensions/ioncube_loader_lin_[your php version].so
save and exit
# service httpd restart
to verify :
# php -v
 
Back
Top