DaveM Well-known member Mar 14, 2017 #1 Is there anyway to stop new members from posting links until they have X amount of post?
Chris D XenForo developer Staff member Mar 14, 2017 #2 Use spam phrases. I guess the simplest way would be to match: Code: /\[url/i Upvote 0 Downvote
DaveM Well-known member Mar 14, 2017 #3 Chris D said: Use spam phrases. I guess the simplest way would be to match: Code: /\[url/i Click to expand... Thanks Upvote 0 Downvote
Chris D said: Use spam phrases. I guess the simplest way would be to match: Code: /\[url/i Click to expand... Thanks
tenants Well-known member Mar 15, 2017 #4 StopHumanSpam checks for that (there is a free version in the free TAC pack), and it also checks things like sneaky urls: mySneakyUrl . c O M There was a regex method here for the personal detail fields: https://xenforo.com/community/threa...ls-in-custom-user-fields.126196/#post-1133573 Code: ^(?>(?i)(?!www|http|\.com|\.net|\.org|\.biz|\.ru).)*$ Upvote 0 Downvote
StopHumanSpam checks for that (there is a free version in the free TAC pack), and it also checks things like sneaky urls: mySneakyUrl . c O M There was a regex method here for the personal detail fields: https://xenforo.com/community/threa...ls-in-custom-user-fields.126196/#post-1133573 Code: ^(?>(?i)(?!www|http|\.com|\.net|\.org|\.biz|\.ru).)*$