๐ฏ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...
biren.hashnode.dev1 min read