Web Server

MySQL Convert from INNODB to MYISAM

8 October 2013

Convert from INNODB to MYISAM MYISAM is use by very less hosting companies now a days, as its mostly provided with the shared hosting account. But sometimes, we needed to change mysql engine, when its create a problem while exporting and importing sql data from INNODB to MYISAM engine. Steps to follow: Take backup of […]

Subfolder to Subdomain with .htaccess

10 September 2013

Convert Subfolder to Subdomain with .htaccess For Example, if you have your url is “http://domain.com/sexy/” and “http://domain.com/files” but you want to convert them all to subdomain too. such as “http://sexy.domain.com” and “http://files.domain.com”. The easiest way to convert folder to subdomain is to use .htaccess, Reconfigured your ServerAlias in Apache Virtual host and add a wildcard A […]

Nginx, PHP-FPM, APC & MariaDB CentOS Install Script

29 August 2013

Pinch Intelligent Stack Scripts for CentOS Linux Pinch installs, secures and configures your very own Nginx, PHP-FPM, APC and MariaDB web-server in a matter of minutes. It’s so easy to install and streamlines your production environment. Installation Pinch is a pinch to install, simply execute the following commands to get started: yum install -y git; […]

PHP configure: error: xml2-config not found. Please check your libxml2 installation.

29 August 2013

Are you attempting to compile PHP on Linux and running into, “configure: error: xml2-config not found. Please check your libxml2 installation.” It’s easy to fix, simply install the libxml2-development package by issuing the following command on your appropriate Linux distribution. Fixing on Red Hat / CentOS / Fedora via Yum yum install libxml2-devel Fixing on Debian / […]

Installing Siege Stress Tester on CentOS 6

29 August 2013

Siege, similar to Apache Benchmark, is an amazing stress testing tool for your web-server. You can spin up a number of connections to simulate concurrency of transactions and gain invaluable insight into how your app or website might perform while under, well, stress! How to Install Siege on CentOS 6 To get started, simply download […]