Summary:
A test user whose associated stripe test customer has been deleted cannot be deleted.
Steps to reproduce:
Expected result: admins should be able to delete members regardless of Stripe membership.
Actual result: on version 3.3.0 I used to get 500 and that "message" can't be undefined.
On 3.4.0 which I updated to since it included a crucial fix to Lyra, I simply get 404.
I would appreciate a fix to this as I'm on the cusp of importing my entire email list to the site as subscribers.
I'm on ubuntu, self-hosting on AWS. Let me know if you need any more information and I'll include what I can.
Hi @oreniko26 have put this into our backlog. Will update when it's prioritized to be worked on.
I couldn't reproduce this. I am able to delete the member successfully in the latest version. Is this fixed in any of the patches done recently?
@oreniko26 are you still experiencing this issue?
Still getting a 'resource not found' error. Did you try to delete the member's associated stripe info before deleting them in ghost?
@oreniko26 Here is what I did:
The member appeared in the members tab in ghost admin.

Then, I went to stripe dashboard and deleted the test customer from there.

Came back to ghost admin and deleted the member from there. It got deleted.

The only thing I am concerned here is that when I subscribed to the blog by paying via stripe, the stripe info did not appear in the member tab in ghost. I mean the following:

Not sure if the above is the reason.
This should not be picked up until we've clarified members delete behaviour, as it may go away as part of changing that instead.
I'm facing the exact same issue. How do i correctly delete it from the database?
https://forum.ghost.org/t/help-unable-to-delete-member/15743
Anyone facing the same issue -
I solved it by going to :
sudo mysql -u ghost -p
enter password (You'll get this in the ghost config file)
show databases
USE ghost_production
(if 'ghost_production' is the name of your db)
show tables
navigate to tables and delete all entries from 'members_stripe_customers_subscriptions'
Use basic commands from this -
https://dev.mysql.com/doc/mysql-getting-started/en/
(I figured it out myself by googling, surfing YT videos after tirelessly requesting on the forum and github. Posting the solution here so you don't have to go through all this.) :)