kylegnally
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WordPress from subdomain to main domainOkay, I just tried this on my localhost. The approach of editing the database directly doesnt work in my case because the theme I’m using utilities the WP API to store theme options. Editing tue database directly had the end effect of removing all theme customizations I had done even though I was using a child theme.
The relevant support topic is at
Lesson: never ever directly edit the database. The strings are stored in a “coded” (serialized) format and editing them directly will break things.
I’ll just do it the long, safe way. Thanks for your help, though- learning what not to do is just as important as learning what TO do, and this will help me avoid this trap in the future! 😀
Forum: Fixing WordPress
In reply to: Moving WordPress from subdomain to main domainThanks a lot! That looks like a fast rundown of the process described in detail here:
https://wpbeaches.com/updating-wordpress-mysql-database-after-moving-to-a-new-url/
Am I correct, and the information provided there covers in detail your step 2? I’m kind of a database novice (not much experience with mysql), so I’m a little nervous about editing it directly.