Web Hosting 33
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 […]
Mod_Expires Configuration In Apache
mod_expires is a module which runs on the Apache web server. It allows manipulation of the cache control headers to leverage browser caching. What this means more specifically is that you will be able to set values on how long the image will be stored by the browser when a client makes a request. This […]
WebP Image Conversion On A Linux Server
WebP is a new image format that provides a lossless and lossy compression on PNG and JPEG file types. It was developed by Google resulting in up to 80% smaller image size. It is supported on all most all modern browser versions. You can use Nginx and Apache to determine if this format is supported […]
How To Setup mod_rewrite In Apache
mod_rewrite is a Apache module installed on linux servers to manipulate URLs submitted in the browser to perform other functions than it appears. Mod_rewrite can improve SEO appearing to give it a static appearance. This guide assumes you already have Apache installed, if you do not please see How to Install Apache Enable mod_rewrite You will […]
How To Install And Configure mod_auth_mysql On Apache
What Is Mod_Auth_Mysql? mod_auth_mysql is an Apache module used for authenticating users against a MySQL database. It is commonly used to protect items on a website via a user login prompt. The module is able to authenticate against a MySQL database to check for a valid username and password, it supports various encryption methods. You can view […]
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 Install Memcached on CentOS
Memcached is a high-performance caching system that is primarily used to speed up sites that rely on databases. It is an in-memory system for storing any data that could be from database calls or page requests. To read more about Memcached you can view the project wiki on github Clean out the repository: yum clean […]
Most Commented