Setting environment manually PHP 5.4 - Linux

Setting environment manually PHP 5.4 - Linux

Manually Configuring Php on Debian-based distros

First edit the sources.list file:

sudo nano /etc/apt/sources.list


Add the following line to the end of the file:

deb-src http://packages.dotdeb.org all wheezy



Update your system:

sudo apt-get update

Install php

sudo apt-get install php5 php5-dev



Accept the installation of the dependencies.

Check php version by:
php-v


To enable the extensions:

mssql:
sudo apt-get install php5-mssql



postgresql:
sudo apt-get install php5-pgsql


mysql:
php5-mysql sudo apt-get install


sqlite:
sudo apt-get install php5-sqlite



firebird:
sudo apt-get install php5-interbase



odbc:
sudo apt-get install php5-odbc



Enabling GD library:
sudo apt-get install php5-gd


Do not forget to delete the php functions in disable_functions option to enable them.

Accept the installation of the dependencies.

Enabling ZendGuardLoader:
Download the file at the end of the tutorial.
At the end of the php.ini file add:

[Zend]
zend_extension = <complete_path/ZendGuardLoader.so>
zend_loader.enable = 1
zend_loader.disable_licensing = 0
zend_loader.license_path =

restart apache:
sudo /etc/init.d/apache2 stop
sudo /etc/init.d/apache2 start


Remember to perform the procedure below to enable the implementation of zendid:
ZendId

Web server:
/var/www/

ZendGuardLoader.so

    • Related Articles

    • Setting environment manually PHP 5.6 - Linux

      Installing a Manual PHP 5.6 Environment - Linux This article will explain how to install and set-up a PHP 5.6 environment with Apache 2.4 so that it'll run Scriptcase. Follow the steps below with caution. Note: This article was based on the Debian ...
    • Manual Update - Linux

      Before performing any procedure we recommend performing a backup of your projects. To back up Scriptcase: Go to Options > Settings, in the side menu go to Services > Backup. A file (.ZIP) will be generated with all your projects, save this file to a ...
    • Setting environment manually PHP 5.6 - Windows

      Installing a Manual PHP 5.6 Environment - Windows This article will explain how to install and set-up a PHP 5.6 environment with Apache 2.4 so that it'll run Scriptcase. Follow the steps below with caution. Download the  Apache 2.4  ,  mod_fcgid ...
    • Setting environment manually PHP 8.1 - Windows IIS

      Install IIS on Windows Server 1) On the Start page, click the Server Manager tile. 2) In Server Manager, select Dashboard, and click Add roles and features. 3) In the Add Roles and Features Wizard, on the Before You Begin page, click Next. 4) On the ...
    • Install ScriptCase PHP 7.0 on a XAMPP on Linux

      Xampp Installation Using PHP 7.0 XAMPP It allows you to easily install Apache on your own computer, regardless of your operating system (Linux, Windows, MAC or Solaris). First you have to proceed to download XAMPP PHP ...