Disable the Home Page counters to increase performance
Disabling the Counters on the Portal Home Page can increase its load time performance. To disable the counters you must modify the web.config parameter PortalHomePageDisplayMode as follows:
Setting the counter visibility on the Portal Home Page for each section.
(Note: By adding up several of the values together you can impact several sections.)
0 : Display all section counters according to their results
1 : Display a link only for the section "My current requests"
2 : Display a link only for the section "My actions to do"
4 : Display a link only for the section "Team to-do list"
8 : Display a link only for the section "Actions to assign to a person"
16 : Display a link only for the section "My requests closed since my last visit"
32 : Display a link only for the section "Follow-up of the current requests"
64 : Display a link only for the section "Follow-up of the current actions"
127 : Display a link for all sections (disables all counters)
Example
PortalHomePageDisplayMode="127" (Sum of all numbers above (0+1+2+4+8+16+32+64=127).
Reader Comments