PHP 7
Laravel Installation Guide For CentOS
How to install Laravel on CentOS One of the most popular frameworks of PHP is Laravel. The use of this framework is increasing day by day. Website development becomes easier by using this framework. It is open-source software. So anyone can install and use this software without any cost. This framework supports most of the […]
How to Save PHP Sessions in Memcached
Memcached is a high performance storage engine designed for storing chunks for data, so it is great for storing sessions in it. The upside of doing this you notice a performance benefit from not writing these disk or a database is that you gain a performance increase. The downside is that memcached isn’t saving anything, […]
How To Upgrade Supervisord In CentOS 6
Supervisord is a simple system for process management and monitoring. It can start processes or restart them when they crash. The repositories for CentOS 6 for supervisor are quite old (version 2.x) which do not contain the latest features. You can read more on the project’s website. If you already have an existing installation installed through […]
PHP-FPM With PHP7 From Source
PHP 7 has great performance benefits and combining that with Nginx when using php-fpm you can get seriously impressive load times! Compiling from source offers more control over where packages are installed and what modules are enabled. If you would like to read more about php-fpm, you can visit the project page Download the dependencies […]
Setup and Optimize Zend OpCache
Zend OPCache: Zend OpCache is a caching engine that comes with PHP by default in later releases (PHP 5.5 and above). It is a caching engine that stores precompiled php code in memory which ultimately results in performance increase as the code does not have to be fully recompiled on each new request. The degree to […]
Compiling PHP from source on CentOS
PHP is a open source scripting language, commonly used for web development. The code is executed on the server before being displayed to clients unlike other languages like JavaScript. PHP can also be used for command line actions as well and has a wide range of libraries and frameworks for it. This guide is how […]
PHP 5.2 in cPanel easy apache 4
PHP 5.2 in removed from cPanel’s easy apache 4 for quite some time. However you can get it to run using a CGI handler. This isn’t really recommended as newer versions of PHP offer both better performance and security when PHP 5.2 went end of life. That said, certain old code wont work without and if […]
Most Commented