🎯How to transfer database from one server to another of WordPress site with script.🚀
STEP 1: Script.sh #!/bin/bash #Database credentials DB_NAME=''DB_USER=''DB_PASSWORD=''DB_HOST='localhost' #Backup file name with date BACKUP_FILE="${DB_NAME}$(date +'%Y%m%d%H%M%S').sql" #Perform the database dump mysqldump --user=$DB_USER --passwor...
Dec 26, 20241 min read18
