XF 2.0 No Contact URL shown for guests

Abraham54

Well-known member
Very strange, the Contact URL is only shown when signed in.
For guests it is not possible to contact us at the moment (Nationaal Computer Forum).
How to redeem this?

In Options/Basic Board Information everything is correct.
 
Hello Brogan, it is not my forum, I am the admin in that forum.
Do also know, that the owner of that forum migrated from vBulletin, because he saw the benefits of XenForo on my forum.
 
This is what is supplemented in .htaccess:

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Redirect 301 /showthread.php https://www.nationaalcomputerforum.nl
 
The redirects are likely from a bad configuration for the "Contact URL" setting -- you probably want that set to the default.

In terms of the link appearing, you may be able to confirm this when you fix the redirect issue, but I'd guess that guests don't have the "Use contact form" permission.
 
Yes - the add-on is totally removed.

And I found the real culprit!

It were certain rewrite rules in .htaccess:

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Redirect 301 /showthread.php https://www.nationaalcomputerforum.nl

On the server I looked specifically for this rule: (data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L]
The section after data/ is non existent!

And after removing this whole section from .htacces the contactlink is now completely restored and functions!
 
Solved.
I thought by my self that maybe it only is a permission problem.

In User group permissions I checkt Unregistered/Unconfirmd and YES - no permission to use contactform!
Now they have permission and Contact Us is available again.
 
Back
Top Bottom