Mr Lucky Well-known member Jul 3, 2014 #1 I'd like to search for posts by size. Is this possible? Any addons that might do it?
P Paul B XenForo moderator Staff member Jul 3, 2014 #2 You can use the Minimum Number of Replies option. Or do you mean actual post size based on content? Upvote 0 Downvote
Mr Lucky Well-known member Jul 3, 2014 #3 Brogan said: You can use the Minimum Number of Replies option. Or do you mean actual post size based on content? Click to expand... I mean actual size of the post content. There are some very old posts that I'd like to convert to xenzine Articles or CTA Featured Threads. All I can remember is that they are very large. I can't even remember what they are about, so searching for big posts would help me find them. Upvote 0 Downvote
Brogan said: You can use the Minimum Number of Replies option. Or do you mean actual post size based on content? Click to expand... I mean actual size of the post content. There are some very old posts that I'd like to convert to xenzine Articles or CTA Featured Threads. All I can remember is that they are very large. I can't even remember what they are about, so searching for big posts would help me find them.
Mike XenForo developer Staff member Jul 3, 2014 #4 You'd have to do it in the DB directly: SELECT post_id, thread_id, message FROM xf_post ORDER BY LENGTH(message) DESC LIMIT 20; Upvote 0 Downvote
You'd have to do it in the DB directly: SELECT post_id, thread_id, message FROM xf_post ORDER BY LENGTH(message) DESC LIMIT 20;