Command Line
Tutorials
-

Install Laravel On Windows
Learn how to install Laravel on windows with composer. Create a web application with Laravel framework that provides a structure and starting point. Laravel provides powerful features such as thorough dependency injection, an expressive database abstraction layer, queues and scheduled jobs, unit and integration testing, and more This article will discuss the basic process of…
-

Manually Update to WordPress 6.2.2
It’s time to update WordPress to version 6.2.2. This minor release addresses 1 bug and 1 security issue. And because this is a security release, it is recommended to update WordPress sites immediately. This is a manual update from the command line. Below are the recommended server setup for this update. PHP 7.4 or greater.…
-

Restore MySQL backup from the terminal
Efficiently import MySql backup database records from an .sql file using the mysql command from the terminal. A quick and direct approach to restore MySQL backup files from the terminal. For example. mysql -uNAME -p DATABASE < database_backup.sql Enter the PASSWORD when prompted. Enter password: Where. NAME is the user who has access to the…
-

Backup MySQL Database In Terminal
Import MySql database records into an .sql file from the terminal using the MySql command mysqldump, it is a quick and easy way to backup MySql database records. Requirements: MySQL Command line terminal How to manually backup a MySQL database. mysqldump -uNAME -pPASSWORD DATABASE > database.sql Where. NAME = the user name who has access…