Kloxo currently no support for 64bit installations, nevertheless almost all packages installed on 64bit although some give problems. I will detail how to go solving the problems that I have encountered.
php -v
We will solve the problems with php libraries, ioncube and zend.
- We remove the folder (may not exist)
rm -rf /var/cache/kloxo/kloxophp*/script/upcp
- Modified the php.ini to load the correct libraries (/ etc / php.ini)
vi /etc/php.ini
In the text editor vi , to find a word you type in your console :/ loquebuscamos
:/extension_dir
We must replace the path:
extension_dir = /usr/lib/php/modules
by
extension_dir = /usr/lib64/php/modules
-It seems every time we change something in php.ini (main) from the back panel to change the path so we create a link
rm -rf /usr/lib/php/modules ln -s /usr/lib64/php/modules /usr/lib/php
-Now remove ioncube
cd /usr/lib/kloxophp/ rm -rf ioncube
We download the 64-bit
wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip unzip ioncube_loaders_lin_x86-64.zip rm -f ioncube_loaders_lin_x86-64.zip
Reinstall zend-64bits
cd /usr/lib/kloxophp/ wget http://downloads.zend.com/optimizer/3.2.8/ZendOptimizer-3.2.8-linux-glibc23-x86_64.tar.gz tar -zxvf ZendOptimizer-*.tar.gz cd ZendOptimizer-* ./install.sh
The installer is asking routes, leaving equal.
-We eliminate waste
rm -rf /usr/lib/kloxophp/ZendOptimizer-3.2.8-linux-glibc23-x86_64* rm -rf /usr/lib/kloxophp/zend/
-We link to avoid the same mistake by changing some of the overall php.ini
ln -s /usr/local/Zend /usr/lib/kloxophp/zend
service httpd restart php -v
Error-free ![]()




















3 Comments
When trying to lose the wget ZendOptimizer http://downloads.zend.com/optimizer/3.2.8/ZendOptimizer-3.2.8-linux-glibc23-x86_64.tar.gz fails, you have a new address by hand?
Thanks
I answer to myself, in case anyone is facilitated:
http://files.directadmin.com/services/custombuild/ZendOptimizer-3.2.8-linux-glibc23-x86_64.tar.gz
Regards
Thanks for your input Martinez
if someone prefers to install the latest version can be found on the official website => http://www.zend.com/en/products/guard/downloads?platform=Linux
1 Trackbacks and Pingbacks
[...] - 64 bit Kloxo Installation 2 - Kloxo Troubleshooting 64bit environments - Fix: Loading library incorrectly. - Fix: Cargo incorrectly ionCube - [...]
Write Review