Re: Search for registered user only
something like below in your search.html file. Please test it on test server first. use at your own risk.
Instead of
if(SITE_CONFIG_ENABLE_FILE_SEARCH == 'no')
{
// this page can not be accessed
coreFunctions:

utput404();
}
Use
if(SITE_CONFIG_ENABLE_FILE_SEARCH == 'no')
{
// this page can not be accessed
coreFunctions:

utput404();
}
elseif ($Auth->loggedIn() == false)
{
// this page can not be accessed
coreFunctions:

utput404();
}