Eh, the other way is manually update your export to fit the ghost 2.0 import format. I’d say going through the install again might be quicker, unless you only have a few posts.
Just had a thought, but that involves you sharing your export with me. I can put up a ghost 1.x pretty easy, run the import, update, run the export and hand it over to you. But that includes trusting me with your data.
Maybe you can do it yourself, if you’re familiar with docker. It makes it really easy.
@Hannah I also sent him a private message with a link to a clean ghost blog version 1.25 that’s at the ready if he wants to use it (yeah I’m hosting it I know, not ideal). But yeah, yours might be a better solution perhaps!
Hi @sean2932 I totally get that it is not ideal, we don’t currently have anyone to maintain the current WP exporter plugin, and so it is very far behind.
You can install 1.0 on your local machine with Ghost CLI ghost install local --v1 to do the import -> upgrade -> export dance.
This is the best option we have right now, but again, we get that it isn’t ideal and are working on a better option.
You know docker I think, so I could give you the instructions that I give to people who need it, but that’s probably not what you are looking for?
Basically, I just run the following:
docker run --name my-ghost-blog d -p XXXX:2368 \
-e url=https://my-ghost-blog.com \
-e NODE_ENV=production \
-v /path/to/your/docker/ghost/my-ghost-blog:/var/lib/ghost/content \
--restart=always \
ghost:1-alpine
I run it with a reverse proxy jwilder/nginx, and the letsencryptcompanion for it. That way I can host it securely for them on my own domain. They log in, create admin account, import data, send me a notice and I run the same command (after throwing away the 1-alpine container), and the only thing I change is the last part: ghost:alpine
But I’m not sure you’re looking for that?
PS: the only downside is I can do 5 secure domains a day because of letsencrypt limitations.
Yeah, true, but I ran it for them so they could access it remotely. They’re not local to my server, nor does it seem they have a docker installation available.