Hide Apache & PHP version
By default, Apache HTTP server (“httpd”) will add information to the Web server header about the Apache version, OS-type, and modules (e.g. mod_ssl, mod_php, mod_bwlimited, etc. ). PHP will also...
View ArticleHow To Enable mod_deflate On Apache To Optimize Page Speed
The mod_deflate module allows output from your Apache web server to be compressed before being sent to the browser. This reduces the size of the content that is required to be sent, thus decreases the...
View ArticleSend Files Faster & Better with PHP & X-Sendfile
I believe everyone is familiar with the traditional PHP way of sending files (outside of document root) using functions such as readfile(), fpassthr() or combination of fopen(), fseek(), fread(), etc,...
View ArticleHow to Upgrade Oracle Instant Client Version for PHP OCI8 Extension
This article describes how to upgrade the Oracle Instant Client version (e.g. from 10.2 to 11.2) for Linux, PHP OCI8 Extension. The bit and version numbers have been omitted here. Replace ‘NN’ with the...
View ArticleHow to Remove Installed Packages with RPM Error: … Specifies Multiple Packages
I encountered this Resource Package Manager (RPM) error while I was removing some installed packages. [root@server]# rpm -e mysql-devel-5.0.45-7.el5 error: "mysql-devel-5.0.45-7.el5" specifies...
View ArticleHow to Compile PHP with IMAP Support
Internet message access protocol (IMAP) is one of the two most prevalent Internet standard protocols for e-mail retrieval.This shows you how to enable IMAP extension in PHP.First, grab the latest...
View ArticleInstalling Node.js & Node Packaged Modules (npm) on Amazon EC2 Debian
This is a quick guide to installing Node.js and Node Packaged Modules (npm) on Amazon EC2 Debian instance.There’s a number of ways to install Node.js, here’s two common ones.The following examples are...
View Article