How Do I Merge Categories With phpMyAdmin

I tried the following phpMyAdmin query to merge my category 112747 into my category 112748: UPDATE `wp_term_relationships` SET `term_taxonomy_id` = 112747 WHERE `term_taxonomy_id` = 112748; It did not work. What errors does the query contain? wordpress 3.8.2 phpMyAdmin 4.18 MySQL 5.5.34-cll-lve A wordpress website of mine has nearly 300,000 posts, with most categories containing, at … Read more

Why am I unable to login to Dashboard after adding myself to admin via phpMyAdmin?

So I have added myself as an admin via following the instructions on this site: http://www.wpbeginner.com/wp-tutorials/how-to-add-an-admin-user-to-the-wordpress-database-via-mysql/ I have done this before and it has worked. When I go into the dashboard and add the creds as I inputted them via phpMyAdmin according to the steps in the URL above, I get an error message saying … Read more

How to do a MySQL dump from production site without using a search and replace script for local development?

I performed a MySQL dump of my WordPress production database to be imported into my local development environment. I plan on frequently performing this database dump and import. Is it possible for me to AVOID running a search & replace script or a MySQL query that updates all of the permalinks, site URLs, etc? Could … Read more