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 […]
Configure ProFTPd for SFTP on CentOS
This is a guide on how to configure ProFTPd for SFTP sessions. Secure File Transfer Protocol (SFTP) is a secure version of FTP which transfers files via the SSH protocol. ProFTPD can be reconfigured to serve SFTP sessions vs using the default FTP protocol. This guide assumes you already have a existing ProFTPD installation. If […]
How To Check And Repair MyISAM Tables In MySQL
MySQL tables can become corrupt for a variety for reasons such as incomplete writes, running out of space, the MySQL daemon being killed or crashing, power failures. If MySQL detects a crashed or corrupt table it will need to be repaired before it can be used again. This guide will walk you through detecting crashed […]
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 Reset A MySQL Root Password
MySQL contains it own ‘root’ password independent of the system root password, this is a guide on how to reset the MySQL root password. To reset it you will need root access on the server that has the MySQL instance. The same process applies to percona and mariadb servers as well, the only differences 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 […]
Most Commented