Thanks Robert. Yes indeed, it does work perfectly.It is only BETA as it needs more work to make it ACP configurable. Not worth the effort as phpBB are (apparently) working on the Contact Us form SPAM problem.Lumpy Burgertushie wrote:here is something that apparently works that you can use at least until the developers do some type of fix to the code .
viewtopic.php?f=456&t=2277011
robert
The problem with that is that a lot of the users of the form will be ones who are having trouble registering, often because they don't understand the antispam measure being used.....so they won't be able to use the form either unless they can figure it out.melek3360 wrote:Maybe by allowing the "spambot countermeasures" to be placed on this page, it could block spambots. Just a suggestion.
There is a technique used by high traffic websites for any type of form that could possibly generate an email or some other system actions like adding a friend, for example. I believe what they do is, when multiple requests are sent from the Contact form, after a while this triggers an spambot countermeasure like a challenge or captcha, and continues to do so every couple of requests to prevent automated submissionsKevC wrote:The problem with that is that a lot of the users of the form will be ones who are having trouble registering, often because they don't understand the antispam measure being used.....so they won't be able to use the form either unless they can figure it out.melek3360 wrote:Maybe by allowing the "spambot countermeasures" to be placed on this page, it could block spambots. Just a suggestion.
Code: Select all
<!-- IF U_CONTACT_US --><li class="small-icon icon-contact rightside" data-last-responsive="true"><a href="{U_CONTACT_US}" role="menuitem">{L_CONTACT_US}</a></li><!-- ENDIF -->
Code: Select all
<!-- IF S_USER_LOGGED_IN -->
<!-- IF U_CONTACT_US --><li class="small-icon icon-contact rightside" data-last-responsive="true"><a href="{U_CONTACT_US}" role="menuitem">{L_CONTACT_US}</a></li><!-- ENDIF -->
<!-- ENDIF -->
And if a user wants to contact you because he can't log in?Purge the cache. Now the contact admin link will only show up once a user has logged in. I'm sure there are more eloquent ways to do this, but this worked for me
Thanks.HiFiKabin wrote:https://www.phpbb.com/customise/db/exte ... ontact_us/
janus_zonstraal wrote:And if a user wants to contact you because he can't log in?Purge the cache. Now the contact admin link will only show up once a user has logged in. I'm sure there are more eloquent ways to do this, but this worked for me