Showing posts with label php. Show all posts
Showing posts with label php. Show all posts

Tuesday, December 31, 2024

Install Oracle Instant Client (oci8) for PHP5.6 on Ubuntu 22.04

*make sure php5.6 is already install 1. Install Basic and the SDK Instant Client packages. Download from OTNDownload version 12.1.0.2.0. This file is required:instantclient-basic-linux.x64-12.1.0.2.0.zipinstantclient-sdk-linux.x64-12.1.0.2.0.zip2. Install OCI8 version oci8-2.0.10. Download from pecl.php.net3. Manual install OCI8 #tar -xzf oci8-2.0.10.tgz#cd oci8-2.0.10#phpize#./configure -with-oci8=share,instantclient,/usr/lib/oracle/12.1/client64/lib#make...

Monday, June 28, 2021

PHP : PHP7.4 Install ZIP extension

1. #yum install pcre-devel gcc zlib zlib-devel libzip-devel make2. #pecl install zip If this issue happen Issue : checking for libzip... configure: error: system libzip must be upgraded to version >= 0.11Solutions:#yum  -y remove libzip-devel#wget https://libzip.org/download/libzip-1.3.2.tar.gz#tar xvf libzip-1.3.2.tar.gz#cd libzip-1.3.2#./configure#make && make install3....

Tuesday, May 25, 2021

Laravel : Install Laravel on Centos 7 and MSSQL connector

Install Composer ----------------#curl -sS https://getcomposer.org/installer | php#mv composer.phar /usr/bin/composer#chmod +x /usr/bin/composerInstall Laravel---------------#git clone https://github.com/laravel/laravel.git#cd /var/www/laravel#composer install#cp .env.example .env#php artisan key:generate#php artisan migrate#chown -R apache.apache /var/www/laravel - if in hosting no to change#chmod...

Tuesday, December 24, 2019

Centos 7 : Install Multiple PHP Version (php5.6 and php7.3, php7.4, php8.1)

The guide (refer www.tecmint.com) 1. Installing and enabling the EPEL and Remi repository - offers the latest versions of the PHP stack on CentOS # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm # yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm 2. Install the yum-utils package - which is used to enable or disable Yum repositories on the system #...

Thursday, August 8, 2019

PHP : Install Composer on Centos

1.First install the PHP CLI (command line interface) package and all other dependencies with: #sudo yum install php-cli php-zip wget unzip 2.Once PHP CLI is installed, download the Composer installer script with: #php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" 3.To verify the data integrity of the script #HASH="$(wget -q -O - https://composer.github.io/installer.sig)" 4.To...

Thursday, September 17, 2015

Wednesday, July 29, 2015

Install Oracle Instant Client (oci8) for CentOS

SolutionsDevelopment packages  # yum install php-pear php-devel zlib zlib-devel bc libaio glibc# yum groupinstall "Development Tools"Instant Client1. Download the Basic and the SDK Instant Client packages from the OTN Instant Client page.Install the RPMs as the root user, for example:Latest Client 21.5.0.0.0 with Oracle 12c and PHP 8.1.Before that Instant Client 21.3.0.0.0 with Oracle 12c and...

Thursday, April 7, 2011

Apache Modsecurity : Request body (Content-Length) is larger than theconfigured limit

Error Log: ModSecurity: Request body (Content-Length) is larger than the configured limit (131072). [hostname "x.x.x.x"] [uri "/templates_import.php"] [unique_id "QzoPUttdJF4AABSQMQsAAAAB"] Resolved solutions: Edit this command to /etc/http/conf.d/modsecurity.conf-minimal # Basic configuration options SecRuleEngine On SecRequestBodyAccess On SecResponseBodyAccess On      ...

Wednesday, January 26, 2011

Quick PHP code

Quick PHP code to test ldap connection$ldap = ldap_connect(“domain.com”);$username=”username@domain.com”;$password=”password”;if($bind = ldap_bind($ldap, $username,$password ))echo “logged in”;elseecho “fail”;echo “done”;?>Quick PHP code to test mysql database connectionecho “trying”;$link = mysql_connect(’123.123.123.123′, ‘username’, ‘password’);if (!$link) {die(‘Could not connect: ‘ . mysql_error());}else{echo...