Suggestions to reduce the wp options table size - Suggestions to reduce the wp_options table size

Suggestions to reduce the wp_options table size

In this post I discussed an example where wp_options table had 900k rows of plugin-based data in it, causing the wp-admin dashboard to load slowly. As noted there, good coding practice is for each plugin to create its own database tables and use those instead of default WP tables. While the WordPress community actively improves … Read full article →

Optimize WordPress Database Tables - Optimize WordPress Database Tables

Optimize WordPress Database Tables

There are several ways you can optimize the MySQL database used by your WordPress site: Optimize tables Optimize all tables in your database: OPTIMIZE TABLE wp_posts, wp_comments, wp_options, wp_usermeta, wp_term_relationships, wp_term_taxonomy, wp_termmeta; Replace wp_ with the database prefix that you are using for your WordPress installation. Repair tables Repair any damaged tables in your database: … Read full article →

wpcli export specific tables wordpress - Dumping specific tables using mysqldump or WP-CLI

Dumping specific tables using mysqldump or WP-CLI

For high-traffic websites, I advise developing a stagging website if you make significant updates or even switch the WordPress theme entirely. But one significant problem I encountered while moving from the staging site to the live one is that all database tables are updated, which could result in financial loss if the website receives multiple … Read full article →

how to change a doamin name wordpress - How to change domain name for a WordPress website  (5 ways)

How to change domain name for a WordPress website (5 ways)

Want to change the domain name for your WordPress website? No problem, in this guide We’ll walk you through 5 different methods to change the domain name for a WordPress website from cPanel PHPMyAdmin. Before following this guide make sure you’ve down the following: registered the desired domain name and pointed it towards your hosting … Read full article →

manual backup - How to Manually Backup WordPress

How to Manually Backup WordPress

A lot of WordPress backup plugins have limitations and are just pushing you to purchase the pro version. That is why I always recommend cperforming a manual backup of WordPress websites, whenever you can. How to do manually backup WordPress: Download all files from Filemanager or FTP Export the database from PHPMyAdmin How to Manually … Read full article →

How to Reset WordPress Password from phpMyAdmin Database - How to Reset WordPress Password from phpMyAdmin Database

How to Reset WordPress Password from phpMyAdmin Database

Locked out of your wp-admin area? Forgot the password? No problem, the easiest way to regain access is to reset your admin password from your database via phpMyAdmin. Step 1. Open PHPMyAdmin The first step is to log into your cPanel and under Databases select phpMyAdmin. Step 2. Select your database name From the left … Read full article →

disable all plugins - Disable WordPress plugins via FTP or within PHPMyAdmin

Disable WordPress plugins via FTP or within PHPMyAdmin

Here are various ways to disable all WordPress plugins at once in cPanel. Disable all plugins via FTP or FileManager Step 1. Login to cPanel > File Manager Step 2. Open /wp-content folder Step 3. Rename /plugins folder to plugins.bak Disabling all plugins using PhpMyAdmin Step 1. Login to your PHPMyAdmin Step 2. Open your … Read full article →