:: Installing ioncube loader on Linux

37 sec read

:: What is ioncube loader
ionCube loader is the PHP extension that decodes encrypted PHP files at runtime. It is freely available and installation is very easy.
 

:: How to install ioncube loader on linux distro
+ download and extract
choose your ioncube loader version:
//www.ioncube.com/loaders.php

wget //downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz
tar xzf ioncube_loaders_lin_x86.tar.gz
mv ioncube /usr/local/

+ configure ioncube on php.ini

vi php.ini
## add this line, if you have zend_extention, please add on top of zend_extension
[Zend]
zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so
zend_extension_ts=/usr/local/ioncube/ioncube_loader_lin_5.2_ts.so
## if you used php 5.3 please use 5.3.so and 5.3_ts.so

+ checking

php -v
PHP 5.2.5 (cli)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2007 Zend Technologies
    with the ionCube PHP Loader v4.0.12, Copyright (c) 2002-2011, by ionCube Ltd.

+ restarting httpd

apachectl restart

 
:: Links
+ Google
+ ioncube

How to fix problem with the editor ‘vi’

:: git error with vi error: There was a problem with the editor 'vi'   :: how to fix the problem 0. check path...
sysadmin.id
10 sec read

Apache :: MP4 Streaming

:: How to Enable mp4 Streaming in Apache + Installing mod h624 streaming wget //h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz tar -xzf apache_mod_h264_streaming-2.2.7.tar.gz cd mod_h264_streaming-2.2.7/ ./configure --with-apxs=`which apxs2` make...
sysadmin.id
18 sec read

Apache :: Flash / FLV Streaming

:: How to Configure Apache for FLV Streaming + Installing mod_flvx wget //people.apache.org/~pquerna/modules/mod_flvx.c which apxs /usr/bin/apxs /usr/bin/apxs -cia mod_flvx.c + setup mod_flvx in http.conf...
sysadmin.id
15 sec read