Pages:
Author

Topic: Question for admins: Add one more post in my thread maybe? (Read 443 times)

administrator
Activity: 5166
Merit: 12850
Does this mean that you do not keep track of the content of deleted posts?

Deleted posts are at first just hidden from public view. To steal the ID from such a post, the deleted post is given a new ID. The deleted spam post in this case now has ID 57394364.

After about a year, deleted posts are moved off of the live database and into an archive database, and no longer occupy their original message ID in the live database. After about another year, deleted posts are deleted from the archive database as well, though they will probably still exist in offline backups.
legendary
Activity: 2730
Merit: 7065
Farewell, Leo. You will be missed!
I can see how reallocating the message IDs presents problems for scraping forum posts. Good luck with dealing with that mess.
Luckily, it's not something that happens that often. In whole of Bitcointalk's history, I would be surprised if more than 10 people asked the administration to add a new post in their threads. Maybe those numbers will increase following this discussion. LoyceV's scrapper picks up only new posts. It doesn't register changes made to already existing posts. That's also why if you mentioned a user's name in an edited post, that user wouldn't be notified of the mention even if he is using LoyceV's bot.

Globals can't do it, but I suppose you could maybe get around it with some trickery by splitting the threads and then merging them with another you created. Probably much easier to get an admin to do it though  Grin.
But that would also require the assistance of admins and global mods. Ordinary users can't merge two threads, can they Huh

How would that merging go exactly? If I have a thread where there has been 20 replies and I create a new thread to merge it with my first two posts, what goes where exactly? Can the forum staff merge it in a way that the OP of my new thread becomes the 3rd post in my old thread? Please explain the process a bit?
legendary
Activity: 2380
Merit: 5213
Posts are deleted for a reason, storing their content would seem redundant. All posts are essentially records in the database, so removing a post also deletes its record from the database.
As far as I know the forum keeps all deleted posts, all edits made (after at least 10 minutes), and only Admins have access to this data.
Just to add to LoyceV's reply:
I think when a post is deleted, it's actually moved to a topic which is visible only to admins.
If you go to your report history and click on a deleted post, you will see that the topic ID has been changed.

For example, this post had been made on topic number 5346386. When I click on it in my report history, I go to topic number 5346379 which is not visible to us.
copper member
Activity: 1610
Merit: 1899
Amazon Prime Member #7
Posts are ordered in threads by message ID. What we do in these cases is that we repurpose the ID of a deleted post which lies in the appropriate range.
Does this mean that you do not keep track of the content of deleted posts? If not, that sounds risky. What did you do with the database entry for the old post?

Posts are deleted for a reason, storing their content would seem redundant. All posts are essentially records in the database, so removing a post also deletes its record from the database.

I think it is more likely that when a post is "deleted" that a field in a table in a record associated with the post is updated to reflect that the post is no longer publically available, so it will not be displayed when someone views a thread. However, the record is kept in the database. Occasionally posts will be removed in error, and when this happens, the admins may restore deleted posts.
I think you're confusing deleting posts with archiving (threads) which is kind of like sending it to trash.
The "trash" for most forums is actually a board that is unavailable to the public but is still available to the moderators and/or admins (depending on the forum). It is very rare for threads to be removed from a forum database.
global moderator
Activity: 3794
Merit: 2615
Join the world-leading crypto sportsbook NOW!
Globals can't do it, but I suppose you could maybe get around it with some trickery by splitting the threads and then merging them with another you created. Probably much easier to get an admin to do it though  Grin.

I can’t imagine the administration would want to start wasting their time handling requests like this. I can only imagine the door they’d be opening to unleash a wave of nonsense on themselves. I would think the preferred method of handling something like this would be to create a new thread and lock the old thread. That way you could handle the issue yourself without admin help.

It's happened a few times before and I think if it's necessary on a important or substantial thread then it should be done. It's provably rare that people run into this issue anyway.
legendary
Activity: 1568
Merit: 2581
Top Crypto Casino
He used the term "repurpose". I believe he checks the database of already deleted posts (posts deleted at one point in the past) and just reallocates the message ID of a matching post to a different forum member.
It looks like it Shocked This is going to mess up some of the forum scraping.
Your new msgID was originally created by skillscreating.

Posts are deleted for a reason, storing their content would seem redundant. All posts are essentially records in the database, so removing a post also deletes its record from the database.
As far as I know the forum keeps all deleted posts, all edits made (after at least 10 minutes), and only Admins have access to this data.

Really? I didn't know that. Damn, that must be one hell of a database.
I can see how reallocating the message IDs presents problems for scraping forum posts. Good luck with dealing with that mess. Grin However, theymos' solution is quite elegant for this situation. I can't think of any simpler way to do this.
 
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
He used the term "repurpose". I believe he checks the database of already deleted posts (posts deleted at one point in the past) and just reallocates the message ID of a matching post to a different forum member.
It looks like it Shocked This is going to mess up some of the forum scraping.
Your new msgID was originally created by skillscreating.

Posts are deleted for a reason, storing their content would seem redundant. All posts are essentially records in the database, so removing a post also deletes its record from the database.
As far as I know the forum keeps all deleted posts, all edits made (after at least 10 minutes), and only Admins have access to this data.
legendary
Activity: 1568
Merit: 2581
Top Crypto Casino
Posts are ordered in threads by message ID. What we do in these cases is that we repurpose the ID of a deleted post which lies in the appropriate range.
Does this mean that you do not keep track of the content of deleted posts? If not, that sounds risky. What did you do with the database entry for the old post?

Posts are deleted for a reason, storing their content would seem redundant. All posts are essentially records in the database, so removing a post also deletes its record from the database.
I think you're confusing deleting posts with archiving (threads) which is kind of like sending it to trash.
legendary
Activity: 2730
Merit: 7065
Farewell, Leo. You will be missed!
Thank theymos, that will come in handy!

Does this mean that you do not keep track of the content of deleted posts? If not, that sounds risky.
I think you guys misunderstood. I don't think theymos meant that he deletes a random post (spam or not) somewhere on the forum to re-use its message ID and make room for an additional post like he did in my thread or in 1miau's.

He used the term "repurpose". I believe he checks the database of already deleted posts (posts deleted at one point in the past) and just reallocates the message ID of a matching post to a different forum member.   
copper member
Activity: 1610
Merit: 1899
Amazon Prime Member #7
Posts are ordered in threads by message ID. What we do in these cases is that we repurpose the ID of a deleted post which lies in the appropriate range.
Does this mean that you do not keep track of the content of deleted posts? If not, that sounds risky. What did you do with the database entry for the old post?
legendary
Activity: 2114
Merit: 6618
Currently not much available - see my websitelink
Done.

Posts are ordered in threads by message ID. What we do in these cases is that we repurpose the ID of a deleted post which lies in the appropriate range.
So, we need to find a spam post created later, after the first post but before the next post where we want to have it added, getting the spam post deleted and we can re-use its ID?  Cheesy

Yes, I'm following your topic since I`m also having a similar problem.

An ID isn't available right at the top. I added one as far up as possible.
Many thanks, that'll help to re-arrange it a bit.
If the above is true, I'll also try to chase a spam post.  Cheesy
administrator
Activity: 5166
Merit: 12850
Done.

Posts are ordered in threads by message ID. What we do in these cases is that we repurpose the ID of a deleted post which lies in the appropriate range.

Yes, I'm following your topic since I`m also having a similar problem.

An ID isn't available right at the top. I added one as far up as possible.
legendary
Activity: 2730
Merit: 7065
Farewell, Leo. You will be missed!
That's subjective to censorship  Cheesy I guess. Maybe I'm going off topic. Who has access to DB? Is it only theymos and/or cyrus too? Or any other global moderator?
I doubt global moderators have access to the database. We know from some old posts that theymos has access to it. Someone else has access to an old database of Bitcointalk as well. Whoever hacked the forum back in the day.

Here is one post where theymos talks about who owns and has access to what:

Quote
Bitcointalk.org:
 - Cobra has ultimate control over the domain name. I have access to the domain name settings.
 - I run the server. Cobra has no access to the database or server.
 - The BTC is held by myself and the treasurers. Cobra has no access.
https://bitcointalksearch.org/topic/m.34255007

I don't know of any references that mention that Cyrus has access to the database, but I find it unlikely that he wouldn't have. Based on forum hierarchy, he is next in line and if something happened to theymos I am sure Cyrus has everything he needs to resume the work.   
hero member
Activity: 1358
Merit: 850
For Lauda's post, it looks like an edit directly in the DB (but I could be wrong), so don't expect anything.
That's subjective to censorship  Cheesy I guess. Maybe I'm going off topic. Who has access to DB? Is it only theymos and/or cyrus too? Or any other global moderator?
If theymos has access to it, I doubt he would change anything now as this is not a MUST doing, IMO; Lauda was something else though  Grin
staff
Activity: 2366
Merit: 2013
I find your lack of faith in Bitcoin disturbing.
I will wait for now for an official response here about how it was done for the example from SFR10.
My guess is, it was done by a global moderator, maybe the permission can be given to all moderators.
Should not be much of an issue.

(This is not an official response)
I would be very surprised if GMs have the possibility to insert a post into a topic. I've never heard of this option and Theymos has disabled the option to merge two topics (we can split a topic in two though). I had a quick look at the SMF wiki and didn't see the option to insert a post into a topic. For Lauda's post, it looks like an edit directly in the DB (but I could be wrong), so don't expect anything.

legendary
Activity: 2114
Merit: 6618
Currently not much available - see my websitelink
Yes, I'm following your topic since I`m also having a similar problem. In our German "Translation Spam found, here you can report it", my second post is also limited and I can't add more data because I've reached the maximum number of characters.
You are exactly in the same spot as I was. You could maybe ask eneloop to delete his post, which is #3 in your thread. Since posts #4-7 are all yours, maybe you can make some changes and merge two of them together so you can continue with your table from post #2 in post #3.
Yes, I was considering it but I don't want anyone to delete his post(s) and if there's a solution, it would be much better if a new post can be added.
I believe I'm not the only one who would like to add some more "reserved" posts later. I've another topic where I'm running into the same problem but I can edit my next post there whenever I need more space.


Try PMing theymos and ask him directly, why not!? You can use SFR10's post and Lauda's thread as example that it has been done before. You have a valid request and I feel I did as well.
I will wait for now for an official response here about how it was done for the example from SFR10.
My guess is, it was done by a global moderator, maybe the permission can be given to all moderators.
Should not be much of an issue.
legendary
Activity: 2730
Merit: 7065
Farewell, Leo. You will be missed!
Yes, I'm following your topic since I`m also having a similar problem. In our German "Translation Spam found, here you can report it", my second post is also limited and I can't add more data because I've reached the maximum number of characters.
You are exactly in the same spot as I was. You could maybe ask eneloop to delete his post, which is #3 in your thread. Since posts #4-7 are all yours, maybe you can make some changes and merge two of them together so you can continue with your table from post #2 in post #3.

Try PMing theymos and ask him directly, why not!? You can use SFR10's post and Lauda's thread as example that it has been done before. You have a valid request and I feel I did as well.

It might be too much work for the admins to start entertaining requests like these, but they do not have to make it a habit, they can evaluate the situation and choose not to take any action; just as theymos does with display name change requests.
Exactly
legendary
Activity: 2016
Merit: 2169
Professional Community manager
I would think the preferred method of handling something like this would be to create a new thread and lock the old thread. That way you could handle the issue yourself without admin help.
Locking an old thread could lead to so many quality replies being buried along with the old thread.
It might be too much work for the admins to start entertaining requests like these, but they do not have to make it a habit, they can evaluate the situation and choose not to take any action; just as theymos does with display name change requests.

Thread starters should also try to be pro active to avoid situations like these one by creating enough reserve slots for future edits.
donator
Activity: 4718
Merit: 4218
Leading Crypto Sports Betting & Casino Platform
I can’t imagine the administration would want to start wasting their time handling requests like this. I can only imagine the door they’d be opening to unleash a wave of nonsense on themselves. I would think the preferred method of handling something like this would be to create a new thread and lock the old thread. That way you could handle the issue yourself without admin help.
legendary
Activity: 2114
Merit: 6618
Currently not much available - see my websitelink
Since Charles-Tim already deleted his post, things are OK now in my thread, but this could be interesting for other users who might find themselves in a similar situation. I didn't judge well enough how much space those tables would take and thought there wasn't so much LN content.
Yes, I'm following your topic since I`m also having a similar problem. In our German "Translation Spam found, here you can report it", my second post is also limited and I can't add more data because I've reached the maximum number of characters.
I was planning to create a second part of it called "Translation Spam found, here you can report it, part II", like "Known Alt Accounts III" where old parts will still be linked but adding a new post #3 to my first part would be a better option.

Nice to see adding an extra post in an existing topic has been done before.  Smiley
Pages:
Jump to: