PHP SOAP example

In order to deploy a webservice API you need at least a server and a client. PHP Soap makes the day! First install php-soap. Let’s suppose to be on a CentOS distro, you should issue a: yum install php-soap remember to reload Apache as well, with a service httpd restart Now you are ready to … Read more

How to install or upgrade to PHP 7 on CentOS 7

Instructions The following guide will either upgrade your current PHP 5 to PHP 7 or will  install new PHP 7 on your CentOS system. Check your current PHP version ( if applicable ): # php –version PHP 5.4.16 (cli) (built: Nov 6 2016 00:29:02) Copyright (c) 1997-2013 The PHP Group Zend Engine v2.4.0, Copyright (c) … Read more

Installing php 5.6 on CentOS 7

enable EPEL and Remi repository to your CentOS 7 system using the commands below. # 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 install yum utils # yum install yum-utils The most important program provided by yum-utils is yum-config-manager, which you can use to active Remi repository as the default repository for installing various PHP versions. For example, if you want to install PHP … Read more