Fixing the Ghost “Super Editor Role Does Not Exist” Migration Error

Share

If your Ghost site suddenly went offline during an upgrade and the logs screamed:

Cannot add permission (Manage gift links) with role (Super Editor) – role does not exist

you’re not alone. This is a known migration edge case that appears during newer Ghost upgrades, especially on older installations.

The good news? :check_mark: No data loss :check_mark: No reinstall needed :check_mark: Fixable in minutes

Let’s walk through it calmly.


The Symptoms

You may notice:

  • Ghost refuses to start
  • The admin panel is inaccessible
  • Logs show a rollback during migration
  • The site goes offline immediately after startup

Typical log output looks like this:

ERROR Cannot add permission(Manage gift links) with role(Super Editor) - role does not exist
WARN Ghost is shutting down
WARN Your site is now offline


Why This Happens

During recent updates, Ghost introduced Gift Links, which come with new permissions.

While applying the database migration, Ghost attempts to assign the permission:

manage:gift_link

to the following roles:

  • Administrator
  • Editor
  • Super Editor

On many older Ghost installs, the Super Editor role was never created, so the migration fails and Ghost rolls everything back.

Ghost migrations are transactional by design. If one step fails, everything stops.


Important Note Before Fixing

Ghost databases often use 24-character hex IDs for roles, not UUIDs.

That means: :cross_mark: Do not use UUID() :white_check_mark: Use a Mongo-style ObjectID string


The Correct and Safe Fix

We will recreate the missing role only. No users, permissions, or content will be modified manually.


Step 1: Stop Ghost

ghost stop


Step 2: Open the Ghost database

If you’re using MySQL:

mysql -u ghost_user -p ghost_database


Step 3: Confirm the role is missing

SELECT id, name FROM roles;

If Super Editor is not listed, proceed.


Step 4: Insert the missing role

Run the following SQL:

INSERT INTO roles (id, name, description, created_at, updated_at)
VALUES (
  '67c8231f8008b800015d2199',
  'Super Editor',
  'Legacy role required for Ghost migrations',
  NOW(),
  NOW()
);

The ID can be any unique 24-character hex string.


Step 5: Verify the role exists

SELECT id, name FROM roles WHERE name = 'Super Editor';

You should see exactly one row.


Step 6: Start Ghost again

ghost start

At this point:

  • The migration reruns
  • Gift Links tables are created
  • Permissions are assigned
  • Ghost stays online :tada:

After the Fix: What to Check

Once Ghost is running:

  1. Visit /ghost
  2. Go to Settings → Staff
  3. Confirm:
    • No users are assigned to Super Editor unintentionally
    • Existing roles behave normally

You can safely leave the Super Editor role in place. Future upgrades may expect it again.


Why Not Skip the Migration?

Some guides suggest manually marking migrations as completed.

This is risky because:

  • Permissions may be missing
  • Future updates may fail harder
  • Debugging becomes painful later

Creating the expected role is the cleanest and safest solution.


Round-up

This issue usually appears when:

  • Upgrading from older Ghost versions
  • Migrating long-running sites
  • Using customized or trimmed role setups

Once fixed, Ghost upgrades normally going forward.

Read more

How to Verify Your KNEC Certificate Online in Kenya

How to Verify Your KNEC Certificate Online in Kenya

Verifying your academic credentials should feel like opening a well-labeled box, not solving a riddle. Kenya’s official systems make it possible to confirm KCPE, KCSE, and other KNEC awards online in a secure, traceable way. This guide walks you through every click, with visual cues and practical tips.

By Nestict Infotech CSR 26 Jun 2026

Mastering Microsoft Excel Formulas

Mastering Microsoft Excel Formulas

Certificate & Diploma Level Notes with Examples and Analysis Microsoft Excel is not just a spreadsheet tool; it is a data analysis engine used in accounting, finance, research, education, and decision-making. This guide transforms a simple checklist of Excel formulas into structured, exam-ready notes suitable for Certificate and

By Nestict Infotech CSR 26 Jun 2026

🌍 The 2026 FIFA World Cup:World Cup 2026 Group Listings (A–L)

:globe_showing_europe_africa: The 2026 FIFA World Cup:World Cup 2026 Group Listings (A–L)

All 48 teams split into 12 groups of four. The top 2 teams in each group automatically qualify for the Round of 32, and an additional 8 best third-place teams also advance.(Sports Mole) Group A * Mexico * South Korea * South Africa * Czech Republic Currently, Mexico leads with 6 points,

By Nestict Infotech CSR 22 Jun 2026

How to File Late VAT Returns in Kenya When Input VAT Is Rejected (April 2025 Case)

How to File Late VAT Returns in Kenya When Input VAT Is Rejected (April 2025 Case)

Late VAT filing in Kenya can feel like walking into a locked room with the lights off. Many taxpayers only discover the lock when iTax suddenly rejects all purchase invoices, even though the dates look perfectly valid. This article explains why iTax rejects April 2025 purchase invoices when filing late,

By Nestict Infotech CSR 12 Jun 2026