Protected: Bash scripts to backup all databases in a MySQL server with the option to exclude some databases.
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
If you’ve ever gone in to a directory, for example a mail or log directory, and wanted to clear it of its contents, but faced an error like this: /bin/rm: cannot execute [Argument list too long] We have a solution for you. It’s nice and simple, and easy to remember. Paste and run the command…
In this article, we will explain how to run backup via the command line. While experienced users can schedule cPanel backups and configure storage in WHM, this section focuses on running manual backup scripts from the command line. Follow these steps to Run a Backup Via the Command Line: Log into the “WHM” account as…
There is no excerpt because this is a protected post.
Wpress-Extractor Windows/Mac Download link Windows – Download now Mac – Download now *IMPORTANT FOR MAC: Don’t forget to make the binary executable by running a chmod +x wpress_extractor on the downloaded file via the Terminal. Download the extractor Create a directory where you wish your files to be extracted to Copy the downloaded extractor to…
$ which php /usr/bin/php $ mv /usr/bin/php /usr/bin/php-backup $ ln -s /opt/plesk/php/7.3/bin/php /usr/bin/php $ php -v
As a developer, you will occasionally need to create a new administrative user in the database to gain access to the site. Typically, this is necessary when you are provided with an export of a WordPress database, but you aren’t provided with the login credentials for the admin user. Sure, you can gain access via…
Just simple add below shortcode in the contact form in wp-admin [submit “SUBMIT FORM →”]
Performing a MySQL Database Dump From your SSH command prompt type … mysqldump -u {username} -p {password} {databasename} > {databasename.sql} Replace the parameters with the appropriate values {username} – this is your database username {password} – this is the password for your database {databasename} – the name of your database {databasename.sql} – the file to…
Importing a MySQLDUMP From your SSH command prompt type … mysqladmin -u {username} -p {password} create {databasename} mysql -u {username} -p {password} < {databasename.sql} Replace the parameters with the appropriate values {username} – this is your database username {password} – this is the password for your database {databasename} – the name of your database {databasename.sql}…