Permanent deletion bug

I think there is a bug with permanent deletion.

I delete a couple of posts. Now I cannot open the deleted post list.

You can see here I still have 342 deleted posts. But when I click on it. It leads to a 404 page.

I can still open other user’s deletion list but not my own.

Is there anything we can do to fix it?

3 Likes

Okay, I think I figured out the steps to recreate the bug.

I’m not sure you need two accounts but here is my situation:

  1. Account A creates a topic, then pin and close the topic.
  2. Account A soft deletes the topic.
  3. Wait for 5 min, log into Account B, and open Account A’s deletion list (for example: www.example.com/u/username/deleted-posts)
  4. Find the post Account A just soft deleted, open it.
  5. If you try to permanently delete the post, it’ll show an error message: post can’t be deleted because there are other posts.
  6. You need to delete the pin and close topic message below the post, then try permanently delete again.
  7. You will succeed, but now you can’t open Account A’s delation list anymore.
3 Likes

Could someone take a look at this, please?

I was cleaning some posts that contain sensitive information and now we are stuck…

3 Likes

Can you still access the deleted posts from the topic/pm and permanently delete them from there, or can you no longer see your deleted posts at all?

2 Likes

I can access them from the post.

But since I don’t know which posts they are, the delete post list is critical.

Without it, I must manually go through all private messages and public topics to find them.

2 Likes

I tried deleted-posts.json too. But the information doesn’t contain deleted posts.

It only shows things like “user_badges” and other user information.

2 Likes

If I can get a deleted post id list somehow that’ll help too.

2 Likes

I’m trying for a repro:

  • Admin A creates new topic, pins it globally (forever), and then closes it
  • Admin A then soft-deletes topic

  • Admin B finds this topic by accessing Admin A’s /deleted-posts list from their profile
  • Admin B attempts to permanently delete topic - receives a “You can not permanently delete this topic because there are other posts.” error
  • Admin B deletes ‘pin’ and ‘close’ small action posts
  • Admin B retries permanent delete - delete is succesful

  • However, Admin B now cannot access Admin A’s /deleted-posts, with an error of GET https://greedy.jammydodger.monster/posts/jammydodger/deleted?offset=0

Though Admin A and Admin C can still access Admin A’s /deleted-posts list. In the short term, @VincentAlse, could you use the secondary admin account to access the /deleted-posts list to find the other posts you wish to delete? Alternatively you could use a data-explorer query to identify them?

3 Likes

Hi @JammyDodger

Thanks for the confirmation. I just tried Admin C (with both old account and newly created account). It doesn’t work for me. I think the reason is that I was deleting posts for many different accounts and bugged the delete listed for most of them.

Let me take a look at data-explorer. Can I query deleted posts with it?

2 Likes

Ah, that is unfortunate. If you have access to the data explorer plugin I think something like this should replicate the /deleted/posts list for a particular user (with post_id thrown in for good measure):

-- [params]
-- user_id :user_id

SELECT p.created_at AS reltime$time,
       id AS post_id,
       id
FROM posts p
WHERE p.user_id = :user_id
AND p.deleted_at IS NOT NULL
ORDER BY p.created_at DESC
4 Likes

Let me give it a try.

3 Likes

Did that work out for you @VincentAlse? I think there should be multiple ways to find the posts you want to delete if that one didn’t give you the list you needed?

3 Likes

A dumb question. What is user_id? I think my user_id is 1 based on the .json page.

I get this message: ActiveRecord::PreparedStatementInvalid: missing value for :user_id in /*

@JammyDodger

1 Like

Looking at that screenshot, it seems you’ve tweaked the parameter at the top, which will actually stop it from working. If you leave it as :user_id it will give you a selection box when you run it where you can type a user name. :+1:

Alternatively you could ditch the parameter and add the user id you got from the json to the WHERE p.user_id = line.

Does that make sense?

3 Likes

Seems like you may already be getting help, but clicking on it brings me to /u/deleted-posts, which works.

1 Like

It works now!

I thought I needed to put user_id in the code.

Thanks a lot @JammyDodger

4 Likes

I fixed the bug you reported with this PR yesterday, which has been already merged and can be deployed if you update your Discourse instance:

However, we figured out that hard deleting topics could leave orphan small actions posts in the database. This second bug was fixed with:

I think everything should be working fine now. Please let us know if you have more problems.

6 Likes

This topic was automatically closed after 3 days. New replies are no longer allowed.