By default, WebLink 8 generates an RSS feed for folders and search results. You can edit the browse.aspx page and search.aspx page to disable the RSS feeds.
To disable the RSS feed on folders
- Use a text editor to open browse.aspx by navigating to the Web Files subfolder in your WebLink installation folder. The default location is "C:\Program Files\Laserfiche\WebLink 8\Web Files\browse.aspx."
- look for the line:
<weblink:FolderRssLink ID="TheFolderRssLink" Visible="true" runat="server" />
- Change the value of the Visible attribute to false:
<weblink:FolderRssLink ID="TheFolderRssLink" Visible="false" runat="server" />
- Save your change to browse.aspx and close the file.
To disable the RSS feed on search results
- Use a text editor to open search.aspx by navigating to the Web Files subfolder in your WebLink installation folder. The default location is "C:\Program Files\Laserfiche\WebLink 8\Web Files\search.aspx."
- look for the line:
<weblink:SearchRssLink ID=TheSearchRssLink runat=server Visible=true />
- Change the value of the Visible attribute to false:
<weblink:SearchRssLink ID=TheSearchRssLink runat=server Visible=false />
- Save your change to search.aspx and close the file.