Kategorie: Linux

Installation Ioncube For Debian and Ubuntu, Centos

The following tutorial describes how to install Ioncube for Debian and Ubuntu, Centos.
The whole thing is really simple! let's get started.

We install the necessary packages for download Ioncube:

yum install nano wget

Debian and Ubuntu

apt-get install nano wget

Ioncube charge:

cd /tmp
wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar xfz ioncube_loaders_lin_x86-64.tar.gz

We check the version of PHP installed on the server and check the location of the extensions directory on the server:

php -v
php -i | grep extension_dir

is the result:

We move our content to our catalog ioncube extensions:

cp /tmp/ioncube/ioncube_loader_lin_7.0.so /usr/lib/php/20151012/

For example, versions of php 5.6 this will be:

ioncube_loader_lin_5.6.so

The last step is to add an extension to our php.ini.

We add:

zend_extension = /usr/lib/php/20151012/ioncube_loader_lin_7.0.so

Check where we command our php.ini example:

 php --ini

edit:

nano /etc/php.ini

Adding at the end of the line:

zend_extension = /usr/lib/php/20151012/ioncube_loader_lin_7.0.so

reload services:

service httpd restart
service php-fpm restart

Apache mod_php

nano /etc/php/7.0/apache2/php.ini

PHP (CLI)

nano /etc/php/7.0/cli/php.ini

PHP CGI

nano /etc/php/7.0/cgi/php.ini

PHP FPM

nano /etc/php/7.0/fpm/php.ini

We can verify the installation by issuing the command

php -v

Linux

Udostępnij
Opublikowane przez
Linux

Recent posts

KeePass2 2.52 w Ubuntu 22.04

The guide below describes how to install KeePass on Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installing Master PDF editor in Ubuntu 22.04

Master PDF Editor is a comprehensive PDF program, which includes many features. Oprócz tworzenia i edycji

2 years temu

iotop - memory monitoring

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Run multiple commands in one cron job

You can separate two or more commands with semicolons (;), Semicolon (;): służy do oddzielania

2 years temu

Changing the exif data of a photo in the Linux terminal

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installing Rocket.Chat Server on Rocky Linux 8

The following guide describes how to install Rocket.Chat on Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu