Pages

Friday, February 17, 2012

Retroactive References 3

Download

Screenshot


Compatibility
  • 7.x
  • 9.x
  • 10.x
  • 11.x

Description
  1. Allows user to retroactively apply link or page references to anchor, list, and containers for all page instances of a content class
  2. Allows user to retroactively apply image, standard field, and text element references to image, standard field, and text element for all page instances of a content class
  3. Can process unlimited references without server timeout
  4. No run away processing upon closing window, which is common in most asp plugins
  5. Multi-threaded for faster processing

Accessibility
  • In SmartTree, navigate to a content class, expand and select a structural element, ensure target link/page is selected in clipboard, in Action Menu, click Retroactive References 2 to bring up final confirmation screen.

Thursday, February 16, 2012

TagIt

Download

Screenshot

Compatibility
  • 7.x
  • 9.x
  • 10.x
  • 11.x

Description
  1. Lists all categories and keywords at once, so user can assign categories and keywords more efficiently
  2. Highlights assigned category and keywords for better usability and faster content review
  3. Categories and keywords fit to window size automatically

Accessibility
  • In SmartTree, select page, Action Menu, TagIt
  • In SmartEdit, open page, right click, plugins in context menu, TagIt

RQLConsole

Download

Screenshot



Compatibility
  • 7.x
  • 9.x
  • 10.x
  • 11.x

Description
  1. Send a RQL message via console and view RQL response
  2. See all available server sessions for debugging and RQL development.

Accessibility
  • In SmartTree, Start -> Administer Project Structure -> Project, Action Menu, RQLConsole

FindIt 2

Download

Screenshot


Compatibility
  • 7.x
  • 9.x
  • 10.x
  • 11.x

Description
  1. Ability to search for code within all content classes or content classes within specific content class folder
  2. Supports regex syntax
  3. User can open template as read only directly from search results

Accessibility
  • In SmartTree, Start -> Administer Content Classes, Action Menu, FindIt 2

Wednesday, February 15, 2012

Management Server 10.1 with MSSQL 2008 Installation Checklist

Here is a simple checklist for Management Server 10.1 installation with MSSQL 2005/2008.

Note that this checklist prepares the system for Management Server installation using local MSSQL accounts.


Download Doc

Tuesday, January 31, 2012

Publishing Following Pages

Often, users would experience the issue of following page won't publish. This issue is actually template code related. Management Server will not publish pages that it cannot get to via link.

For example, pages are connected to lst_navigation but do not publish when "publish all following pages" option is selected.


That is because the following code is missing in the template code and Management Server cannot crawl to following pages.
<!--
<!IoRangeList>
<%lst_navigation%>
<!/IoRangeList>
-->

Friday, January 6, 2012

Duplicate Pages

Most publication issues can be caused by pages connected to multiple locations. The most common symptom is having duplicate pages on the site.

For example:  Both page 1 and page 2 are connected to multiple locations with different publication package at each location, so the pages will get published twice, each time to a different location.


Obsolete Solution (Not working in 9 or 10)
Edit the content class of "RSS Listing", use preexecution to replace islink=2 with islink=10 to trick CMS into thinking the following pages are references, hence not to crawl and publish following pages. 

All Version Compatible Solution
Use the list to pull info_page_guid from the connected page.
<!IoRangeList>
<!IoRangeNoRedDotMode><!IoRangeRedDotMode><!--<%lst_pages%>--><!/IoRangeRedDotMode><!/IoRangeNoRedDotMode>
<li><%!! Context:Pages.GetPage(Guid:<%inf_page_guid%>).GetUrl(Bool:True) !!%></li>
<!/IoRangeList>

Page 1 and page 2 still get published according to different publication packages, but links generated always point to the pages' main link