Orphaned postmeta: Orphaned comment meta Session Data: Delete post revisions: Delete transients: Delete unused tags:
MySQL
WP Autoload Options
Autoloaded options total size: Top 20 autoload options by size:
Create New MySQL User & Grant Priveleges
CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; GRANT ALL PRIVILEGES ON *.* TO ‘newuser’@’localhost’; The *.* refers to Database_Name.Table_Name Reload Privileges FLUSH PRIVILEGES: How To Grant Different User Permissions Here is a short list of other common possible permissions to give users: ALL PRIVILEGES- as we saw previously, this would allow a MySQL user all access […]