Having installed the searchlog mod and looked at the permissions of who can view the search results, there is an option within the provided readme file for inc_header.asp which says
"If you would like your visitors (non-members) to be able to view the searchlog.asp page without being registered/logged on follow the following instructions".
I have looked to only allow all, registered members, admins and moderators the option to see the search results. So I did not add the extra coding suggested.
Currently entering the admin config page selecting 'All members' and the Search Log link is displayed in the forum header, with no member logged in.
The admin_searchlog.asp can be altered to only allow members and above to view the link at the top of the header. The option code from admin_searchlog.asp:
If you add a new line below the 0 option:
<option value=""1""" & chkSelect(strSLDisplay,1) & ">Members Only</option>" & vbNewLine & _
it will change permissions.
Then change the option 0 line to:
<option value=""0""" & chkSelect(strSLDisplay,0) & ">Everyone</option>" & vbNewLine & _
Once uploaded changed file, remember to go to admin options and re submit new option on the config page.<