My friend ask me about FreeBSD PHP7 ports and he already check if the ports not exist yet. He just feel more comfortable with ports than using git or source. I search Google and found github repository of PHP 7 ports. I give it a try with my vps and it looks good. Lets get […]
Category: PHP
How to install Xampp Linux on Peppermint OS 5
I have a few php system at the moment. My 1st system is php and folks (mysql etc) installed via apt-get . 2nd system is PHP system using phpfarm technique . This time I want to add other system that backed by Xampp 🙂 . Lets start add this big boy. Download Latest xampp for […]
How to install Apache, MariaDB and PHP on CentOS 7 minimal
After install and configure network under CentOS 7 minimal I continue with LAMP section. Since the machine has 4GB memory I prefer to use old fashion LAMP. Only switch MySQL with MariaDB 🙂 The steps for LAMP installation for my own reference and my vps need : Install required Package Install nano # yum install […]
Using multiple php inside one Ubuntu machine
Another challenge came. One of our application finally updated. The application development use php 5.3 + and already pass with php 5.5+ version. Time for migration schedule and the requirement is obvious : the machine able to run 2 different php (php 5.2.17 is a must and other php version is at least 5.3+). The […]
Compile PHP 5.2.17 using phpfarm
In general phpfarm is working well in case you need multiple php environment in single machine. Special case is for PHP 5.2.17 (latest version of 5.2 generation), I got this error when compile : opt/phpfarm/src/php-5.2.17/ext/dom/node.c: In function ‘zim_domnode_getNodePath’: /opt/phpfarm/src/php-5.2.17/ext/dom/node.c:2002:8: warning: pointer targets in assignment differ in signedness [-Wpointer-sign] value = xmlGetNodePath(nodep); ^ make: *** [ext/dom/node.lo] […]