Best way to handle a full import/export from a live site #601
Replies: 1 comment 6 replies
-
it looks like your main challenge is the database. if you are running the Playground in a Node environment you can connect to MySQL by setting the connection parameters in for the browser you will need to convert between MySQL and SQLite unless you also use SQLite in production, something I'm guessing you won't be doing. there are converters and most of the functionality that WordPress uses is basic, so should convert well enough. there's a zip export and import on playground.wordpress.net that you can explore. I think if you mimick the export from your production site it should be very possible to import it into a Playground environment, assuming you can get the database into an SQLite form or run the Playground from Node. |
Beta Was this translation helpful? Give feedback.
-
I've been playing around with a forked version of this all weekend and it's been a solid experience! I've almost nailed down a way for us to use this internally as a way to preview PR against our production sites, which I am super excited about.
I've nailed down my issues really to 1-2 core issues that I am trying to figure out the best way to move forward.
Great project!
Beta Was this translation helpful? Give feedback.
All reactions