Disabling The WebLink 8 RSS Feeds.

February 13, 2012 | KB: 1012911
WebLink 8

Summary

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.

More Information

To disable the RSS feed on folders

  1. 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."
  2. look for the line:
  3. <weblink:FolderRssLink ID="TheFolderRssLink" Visible="true" runat="server" />

  4. Change the value of the Visible attribute to false:
  5. <weblink:FolderRssLink ID="TheFolderRssLink" Visible="false" runat="server" />

  6. Save your change to browse.aspx and close the file.

To disable the RSS feed on search results

  1. 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."
  2. look for the line:
  3. <weblink:SearchRssLink ID=TheSearchRssLink runat=server Visible=true />

  4. Change the value of the Visible attribute to false:
  5. <weblink:SearchRssLink ID=TheSearchRssLink runat=server Visible=false />

  6. Save your change to search.aspx and close the file.