Skip to content

Instantly share code, notes, and snippets.

@bytezen
Created July 29, 2019 15:01
Show Gist options
  • Save bytezen/e9c1552dc628f4c08cf8fd86cf6a53b3 to your computer and use it in GitHub Desktop.
Save bytezen/e9c1552dc628f4c08cf8fd86cf6a53b3 to your computer and use it in GitHub Desktop.
work around to manually add users to ghost when you can't get the darn email functionality configured.

this is from issue discussion on the ghost repository .

@mcoolidge @reustonium . depending on how critical it is (and if you have access to the database backing ghost), you can UPDATE invites SET status='sent' (there is a check that the message has been sent) and then SELECT email,token FROM invites to get the token that would have been included in the url.

Then you can insert the token into /ghost/#/signup// where token is the token from the database less the = at the end.

This has worked for me at least.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment