MyBB Community Forums

Full Version: Duplicate thread detection
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Something like this mod for PhpBB in core would be good and useful http://www.phpbb.com/community/viewtopic...&t=1056865

Thanks for your suggestion. Well we need much more than for the prevention of duplicate threads rather than getting a message stating threads with similar topic name Smile
for performance, you could create a MD5 hash for the message and store that in a separate field. When editing a post, you can recalc the hash at that time so its up to date.

Then when posting, derive the MD5 for the new content and search on that for what are most probable duplicates.
Good suggestion pavemen.
Thats a very good suggestion pavemen.

Thanks a lot
+1 This will be good ;]
(2011-07-29, 12:48 AM)pavemen Wrote: [ -> ]you could create a MD5 hash

I'd use SHA1 (less possibilities of collisions and it isn't significantly slower)
Pages: 1 2 3