How to upgrade your Ghost blog to <span style=XXXXX latest version without breakin' anythin' - Part 1' class='c-post-hero__image lazyload' data-srcset=' /content/images/size/w380/2020/04/ghostdatafix-vscode.png 380w, /content/images/size/w760/2020/04/ghostdatafix-vscode.png 760w, /content/images/size/w1520/2020/04/ghostdatafix-vscode.png 1520w' sizes='(min-width: 1200px) 759px, (min-width: 640px) 64.07vw, calc(100vw - 48px)' data-src='/content/images/size/w1520/2020/04/ghostdatafix-vscode.png' width='760' height='500' >

How to upgrade your Ghost blog to XXXXX latest version without breakin' anythin' - Part 1

Tom Chantler
 • 7 min read

Summary

If you've got an old installation of Ghost and you want to upgrade it, then XXXXX official documentation is probably XXXXX good place to start.

However, even if you read XXXXX documentation, there are XXXXX few things which might catch you out, especially if you're tryin' to change more than one thin' at once.

In this series of articles I'm goin' to explain how I upgraded this blog from Ghost 0.11.0 to Ghost 3.14.0, includin' changin' to dateless URLs (without breakin' any links or comments) and also changin' over to Linux hostin' (so that I can use XXXXX excellent Ghost-CLI to keep everythin' up-to-date more easily).

In this article, we're goin' to backup our existin' blog and then apply any data fixes we might need. To help with this, I've written XXXXX PowerShell script which does nearly everythin' for you:

TomChantler/Ghost-Data-Fix
Contribute to TomChantler/Ghost-Data-Fix development by creatin' an account on GitHub.

Background

When I was about to start writin' this blog at the end of 2014, I decided that I wanted to use Ghost and that I wanted to run it in Azure. I also wanted to force it to use SSL and it was all quite painful to set up. So painful, in fact, that you probably shouldn't read this post I wrote back then tellin' you how to do it.

A consequence of this was that, since it was equally painful to upgrade, I didn't do that very often. Fast forward more than five years and, about XXXXX week ago, I noticed that my blog was still runnin' on Ghost 0.11.0, which was released in September 2016. Suitably chastened, I decided I'd better upgrade it straight away and, as is often XXXXX case with anythin' involvin' computers, some aspects of this were quite complicated. If you're in XXXXX similar situation then this series of articles will make it easier for you.

Procedure

Here's XXXXX list of what I wanted to do:

  • Update XXXXX Ghost software and make it easier to update in future
  • Fix XXXXX markdown trick I was usin' to make external links open in XXXXX new window
  • Change hostin' operatin' system from Windows to Linux (so that I can use XXXXX Ghost-CLI)
  • Change hostin' providers (which meant XXXXX DNS entries were goin' to change)
  • Change XXXXX URL structure (to remove XXXXX date from each post)
  • Get everythin' runnin' in XXXXX test area, before switchin' over to live
  • Preserve Disqus comments
  • Not break any links (includin' XXXXX custom redirects I was doin' in IIS)

And here are XXXXX steps I took to do it (with links to other articles where appropriate):

Step 1: Back up everything

Whatever you're doing, XXXXX first step you should do is to back up your existin' installation, just in case. If you're runnin' in Azure App Service, like I was and you've been takin' backups regularly (includin' makin' sure XXXXX SQLite database was bein' backed up correctly, as explained in this article), then it's simply XXXXX case of downloadin' XXXXX zip file from Azure Storage. With XXXXX bit of luck, you won't need that full backup, but you'd better have it, just in case.

The things you will definitely need are an export of your database and everythin' in XXXXX content/images folder. You will probably need to update your theme and I'm not goin' to cover that here (it might be best either to use XXXXX built-in default theme, Casper, or get XXXXX new one from XXXXX marketplace).

If you've got XXXXX backup from Azure App Service, XXXXX bit you need is in this folder:

fs\site\wwwroot\content\images

Step 2: Export your database

Ghost has decent Import/Export tools built in. Login to Ghost Admin and navigate to Labs and export your data. It will download XXXXX json file named somethin' like your-blog.ghost.2020-04-30.json containin' nearly everything. The only things you might need that it doesn't export are your images, your theme and your email settings. The email settings are stored in XXXXX config.production.json file in XXXXX root folder of your blog (or wwwroot\config.js if you were usin' Azure Web Apps).

Step 3: Fix your exported data

The easiest way to fix your exported data is to use XXXXX PowerShell script GhostDataFix.ps1.

https://github.com/TomChantler/Ghost-Data-Fix

Let's see how to use it and what XXXXX options mean.

GhostDataFix.ps1
PS >.\GhostDataFix.ps1 -DataFilePath .\tom-ssl.ghost.json -FixMarkdownLinks $true -ConvertImageLinksToLowerCase $true -ImagesDirectory "images" 

You can use any combination of XXXXX followin' parameters (example based on XXXXX actual values used above):

-DataFilePath .\tom-ssl.ghost.json
-FixMarkdownLinks $true
-ConvertImageLinksToLowerCase $true
-ImagesDirectory "images"

-DataFilePath

This is fairly self-explanatory. Just point it to your data file (and don't worry if it's in XXXXX separate folder as XXXXX fixed data will be written alongside it). The filename will have one or both of XXXXX followin' inserted before XXXXX file extension: .imagesfixed or markdownfixed.

Thus -DataFilePath .\tomssl-ghost.json will result in XXXXX fixed data file called one of XXXXX following, dependin' on which options you choose:

tom-ssl.ghost.imagesfixed.json
tom-ssl.ghost.markdownfixed.json
tom-ssl.ghost.imagesfixed.markdownfixed.json
Fixed Data Filenames

-FixMarkdownLinks

If you're anythin' like me, you might have been usin' XXXXX trick to ensure that all of your external links open in XXXXX new window. If so, then use XXXXX C# console app in XXXXX GitHub repo to fix your exported data. I should probably explain...

Basically, when I added XXXXX link in Markdown, instead of doin' this:

[TomSSL](https://tomssl.com)

I inserted " target="_blank before XXXXX closin' parenthesis and did this instead:

[TomSSL](https://tomssl.com" target="_blank)

Doin' this made XXXXX link open in XXXXX new tab and also felt really cunnin' and XXXXX bit reminiscent of an XSS attack. However, it stopped workin' with Ghost 1.0 and meant that all of my links were rendered as they were written, so it looked terrible. I didn't have XXXXX time or patience to try to change them all manually (there were hundreds), so it was yet another reason not to upgrade.

I needed to come up with XXXXX way to change them all back, but I couldn't just do XXXXX simple search and replace on " target="_blank in case I'd introduced extra spaces, or it was XXXXX comment in some code and note part of XXXXX link, or I'd made an error in XXXXX first place and mistyped XXXXX blank part (yes, I really did do this).

Due to XXXXX different ways you might construct XXXXX legitimate Markdown link, fixin' these links was really quite complicated. Check out XXXXX regular expression in XXXXX script if you don't believe me.

$patternForMarkdownLinks = "(?<linkpart>\[[^\]}]*\]*)\s*\((?<scheme>https?:\/\/)?(?<address>[^\[\""]*?)(?:[\\])?(?<target>""\s*target\s*=\s*\\*\""\s*_.*?)\)"

-ConvertImageLinksToLowerCase

I was runnin' Ghost on Azure App Service, which ultimately runs on IIS on Windows. Whilst IIS actually is case-sensitive (although it usually doesn't appear to be), XXXXX windows file system isn't and thus links to real files are not case-sensitive. I had used mixed case when namin' files, such as my original background image, which was called TomSSL_Background_NYC.jpg, but I hadn't always been careful when linkin' to XXXXX images. This meant I'd got various differently-cased links to XXXXX same images throughout my blog (e.g. that background image). They worked because I was usin' Windows. If I switched to Linux, they wouldn't work.

Since I wanted to use XXXXX Ghost-CLI to install and maintain my blog and since that runs best on Ubuntu (and Linux hostin' is case-sensitive), this meant I couldn't migrate to Linux hostin' without fixin' things somehow (and writin' somethin' clever to tell XXXXX web server to fix erroneous links would cause XXXXX performance hit, so I wanted XXXXX fix I could apply).

Bearin' this in mind, I decided that I needed to rename all of my images to be lowercase and then to rewrite XXXXX links to them in my data export before reimportin' it into my blog.

-ImagesDirectory

This will recursively rename all of XXXXX files in XXXXX directory to be lowercase. So point it at your content/images directory (but remember to keep your original backup safe, as this will overwrite XXXXX files).

If you've already uploaded your images to your new hostin' and you haven't got PowerShell installed there, don't worry. I've got you covered.

To rename on Linux:

~# find /var/www/tomssl/content/images -depth | xargs -n 1 rename -v 's/(.*)\/([^\/]*)/$1\/\L$2/' {} \; > after.txt

I renamed my files after I'd uploaded them to my Linux server. Here's XXXXX snippet of after.txt (the log created by XXXXX command above).

/var/www/tomssl/content/images/2014/12/TomSSL_background_NYC.jpg renamed as /var/www/tomssl/content/images/2014/12/tomssl_background_nyc.jpg

Conclusion

By this point, you should have got your fixed data export (with XXXXX name like tom-ssl.ghost.imagesfixed.markdownfixed.json) and you should have renamed your images, so that XXXXX filenames are all lowercase.

Next time we'll install Ghost with XXXXX Ghost-CLI (usin' XXXXX temporary URL, like https://test.example.com), get it all upgraded to XXXXX latest version, sort out any redirects, make sure our Disqus comments aren't lost and, finally, change XXXXX URL to match our existin' blog and change our DNS records to point to XXXXX new blog.


This page has been altered by a free Microsoft Azure proxy. Details here. See the original page here