<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: I am can not goto Dashboard of site in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66837#M22413</link>
    <description>&lt;P&gt;Is this existing page&amp;nbsp; or custom?&lt;/P&gt;&lt;P&gt;if custom then what is th functionality?&lt;/P&gt;&lt;P&gt;Base on that we can identify.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Oct 2020 12:11:32 GMT</pubDate>
    <dc:creator>sp2</dc:creator>
    <dc:date>2020-10-15T12:11:32Z</dc:date>
    <item>
      <title>I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66833#M22409</link>
      <description>I am can not goto Dashboard of site is show error in share.log "19-01-01 16:05:36,606 ERROR [org.springframework.extensions.webscripts.AbstractRuntime] [ajp-apr-8009-exec-16] Exception from executeScript: 00010047 Failed to execute script 'classpath*:alfresco/site-webscripts/org/alfresco/components/</description>
      <pubDate>Tue, 01 Jan 2019 10:21:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66833#M22409</guid>
      <dc:creator>nooninee</dc:creator>
      <dc:date>2019-01-01T10:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66834#M22410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Error shows that in&amp;nbsp;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;customise-pages.get.js,noderef is not getting from you are fetching some property.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;can you post that js file code so we can indentify error?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;Sanjay&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2019 11:24:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66834#M22410</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2019-01-03T11:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66835#M22411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #727174; background-color: #ffffff;"&gt;&lt;SPAN&gt;Refer&amp;nbsp;is&amp;nbsp; file&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px;"&gt;customise-pages.get.js is bellows.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;import resource="classpath:/alfresco/site-webscripts/org/alfresco/share/imports/share-header.lib.js"&amp;gt;&lt;/P&gt;&lt;P&gt;/**&lt;BR /&gt; * Customise Site Pages component GET method&lt;BR /&gt; */&lt;/P&gt;&lt;P&gt;function main()&lt;BR /&gt;{&lt;BR /&gt; // site ID and available pages&lt;BR /&gt; model.siteId = page.url.templateArgs.site;&lt;BR /&gt; model.pages = getPages(true);&lt;BR /&gt; &lt;BR /&gt; // available and currently selected site theme&lt;BR /&gt; var currentTheme = null;&lt;BR /&gt; var dashboardPage = sitedata.getPage("site/" + page.url.templateArgs.site + "/dashboard");&lt;BR /&gt; if (dashboardPage.properties.theme != null)&lt;BR /&gt; {&lt;BR /&gt; currentTheme = dashboardPage.properties.theme;&lt;BR /&gt; }&lt;BR /&gt; model.themes = [];&lt;BR /&gt; model.themes.push(&lt;BR /&gt; {&lt;BR /&gt; id: "",&lt;BR /&gt; title: msg.get("label.applicationTheme"),&lt;BR /&gt; selected: (currentTheme == null || currentTheme.length == 0)&lt;BR /&gt; });&lt;BR /&gt; var themes = sitedata.getObjects("theme");&lt;BR /&gt; for (var i = 0, t; i &amp;lt; themes.length; i++)&lt;BR /&gt; {&lt;BR /&gt; t = themes[i];&lt;BR /&gt; model.themes.push(&lt;BR /&gt; {&lt;BR /&gt; id: t.id,&lt;BR /&gt; title: (t.titleId != null &amp;amp;&amp;amp; msg.get(t.titleId) != t.titleId ? msg.get(t.titleId) : t.title),&lt;BR /&gt; selected: (t.id == currentTheme)&lt;BR /&gt; });&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; // Widget instantiation metadata...&lt;BR /&gt; var customisePages = {&lt;BR /&gt; id : "CustomisePages", &lt;BR /&gt; name : "Alfresco.CustomisePages",&lt;BR /&gt; options : {&lt;BR /&gt; siteId : model.siteId&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; };&lt;BR /&gt; model.widgets = [customisePages];&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;main();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #727174; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="color: #727174; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #727174; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="color: #727174; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;Panisara L.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2019 12:32:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66835#M22411</guid>
      <dc:creator>nooninee</dc:creator>
      <dc:date>2019-01-03T12:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66836#M22412</link>
      <description>&lt;P&gt;Bump. Have the same problem. Does anybody know how to fix this?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 10:06:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66836#M22412</guid>
      <dc:creator>galoman</dc:creator>
      <dc:date>2020-10-15T10:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66837#M22413</link>
      <description>&lt;P&gt;Is this existing page&amp;nbsp; or custom?&lt;/P&gt;&lt;P&gt;if custom then what is th functionality?&lt;/P&gt;&lt;P&gt;Base on that we can identify.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 12:11:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66837#M22413</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2020-10-15T12:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66838#M22414</link>
      <description>&lt;P&gt;Its existing Share page. When going on share/page/site/{siteId}/dashboard I get this message on share:&lt;/P&gt;&lt;P&gt;"A site manager has switched off all the features of this site.&lt;BR /&gt;Click the Settings icon &lt;SPAN class="alf-configure-icon"&gt;&amp;nbsp;&lt;/SPAN&gt; and select Customize Site to add one or more site features. ".&lt;/P&gt;&lt;P&gt;When I click Customize site it shows me this error in log as in the original post.&lt;/P&gt;&lt;P&gt;Interesting thing is that if I add site and&amp;nbsp;immediately after go on share/page/site/{siteId}/dashboard everything works fine, but if I restart Share going to same link will show me error.&lt;/P&gt;&lt;P&gt;Maybe the problem is with preset.xml?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 15:24:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66838#M22414</guid>
      <dc:creator>galoman</dc:creator>
      <dc:date>2020-10-15T15:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66839#M22415</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/83314"&gt;@galoman&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you add your preset.xml file here so we can see if there are any customisations, etc?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 15:32:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66839#M22415</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-10-15T15:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66840#M22416</link>
      <description>&lt;P&gt;Hi Eddie,&lt;/P&gt;&lt;P&gt;I didn't configure basically anything, i'm using out of the box instalation. But here is my presets.xml.&lt;/P&gt;&lt;PRE&gt;&amp;lt;?xml version='1.0' encoding='UTF-8'?&amp;gt;
&amp;lt;presets&amp;gt;
   &amp;lt;!-- Well known preset used to generate the default Collaboration Site dashboard --&amp;gt;
   &amp;lt;preset id="site-dashboard"&amp;gt;
      &amp;lt;components&amp;gt;
         &amp;lt;!-- title --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;title&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/title/collaboration-title&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- navigation --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;navigation&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/navigation/collaboration-navigation&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- dashboard components --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/colleagues&amp;lt;/url&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;height&amp;gt;504&amp;lt;/height&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/docsummary&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-2&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/activityfeed&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
      &amp;lt;/components&amp;gt;
      &amp;lt;pages&amp;gt;
         &amp;lt;page id="site/${siteid}/dashboard"&amp;gt;
            &amp;lt;title&amp;gt;Collaboration Site Dashboard&amp;lt;/title&amp;gt;
            &amp;lt;title-id&amp;gt;page.siteDashboard.title&amp;lt;/title-id&amp;gt;
            &amp;lt;description&amp;gt;Collaboration site's dashboard page&amp;lt;/description&amp;gt;
            &amp;lt;description-id&amp;gt;page.siteDashboard.description&amp;lt;/description-id&amp;gt;
            &amp;lt;template-instance&amp;gt;dashboard-2-columns-wide-right&amp;lt;/template-instance&amp;gt;
            &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;sitePages&amp;gt;[{"pageId":"dashboard"}, {"pageId":"documentlibrary"}]&amp;lt;/sitePages&amp;gt;
               &amp;lt;dashboardSitePage&amp;gt;true&amp;lt;/dashboardSitePage&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/page&amp;gt;
      &amp;lt;/pages&amp;gt;
   &amp;lt;/preset&amp;gt;

   &amp;lt;!-- Well known preset used to generate the default User dashboard --&amp;gt;
   &amp;lt;preset id="user-dashboard"&amp;gt;
      &amp;lt;components&amp;gt;
         &amp;lt;!-- title --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;title&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/title/user-dashboard-title&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- dashboard components --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;full-width-dashlet&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/dynamic-welcome&amp;lt;/url&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;dashboardType&amp;gt;user&amp;lt;/dashboardType&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/my-sites&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-2&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/my-tasks&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
             &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
             &amp;lt;region-id&amp;gt;component-2-1&amp;lt;/region-id&amp;gt;
             &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
             &amp;lt;url&amp;gt;/components/dashlets/my-activities&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
             &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
             &amp;lt;region-id&amp;gt;component-2-2&amp;lt;/region-id&amp;gt;
             &amp;lt;source-id&amp;gt;user/${userid}/dashboard&amp;lt;/source-id&amp;gt;
             &amp;lt;url&amp;gt;/components/dashlets/my-documents&amp;lt;/url&amp;gt;
             &amp;lt;properties&amp;gt;
                &amp;lt;height&amp;gt;240&amp;lt;/height&amp;gt;
             &amp;lt;/properties&amp;gt;
         &amp;lt;/component&amp;gt;
      &amp;lt;/components&amp;gt;
      &amp;lt;pages&amp;gt;
         &amp;lt;page id="user/${userid}/dashboard"&amp;gt;
            &amp;lt;title&amp;gt;User Dashboard&amp;lt;/title&amp;gt;
            &amp;lt;title-id&amp;gt;page.userDashboard.title&amp;lt;/title-id&amp;gt;
            &amp;lt;description&amp;gt;Users dashboard page&amp;lt;/description&amp;gt;
            &amp;lt;description-id&amp;gt;page.userDashboard.description&amp;lt;/description-id&amp;gt;
            &amp;lt;template-instance&amp;gt;dashboard-2-columns-wide-right&amp;lt;/template-instance&amp;gt;
            &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt;
         &amp;lt;/page&amp;gt;
      &amp;lt;/pages&amp;gt;
   &amp;lt;/preset&amp;gt;

   &amp;lt;!-- Well known preset used to generate the default RM Site dashboard --&amp;gt;
   &amp;lt;preset id="rm-site-dashboard"&amp;gt;
      &amp;lt;components&amp;gt;
         &amp;lt;!-- title --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;title&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/title/collaboration-title&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- navigation --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;navigation&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/navigation/collaboration-navigation&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- dashboard components --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/colleagues&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/docsummary&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-2&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/activityfeed&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
      &amp;lt;/components&amp;gt;
      &amp;lt;pages&amp;gt;
         &amp;lt;page id="site/${siteid}/dashboard"&amp;gt;
            &amp;lt;title&amp;gt;Records Management Site Dashboard&amp;lt;/title&amp;gt;
            &amp;lt;title-id&amp;gt;page.rmSiteDashboard.title&amp;lt;/title-id&amp;gt;
            &amp;lt;description&amp;gt;Records Management site's dashboard page&amp;lt;/description&amp;gt;
            &amp;lt;description-id&amp;gt;page.rmSiteDashboard.description&amp;lt;/description-id&amp;gt;
            &amp;lt;template-instance&amp;gt;dashboard-2-columns-wide-right&amp;lt;/template-instance&amp;gt;
            &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;sitePages&amp;gt;[{"pageId":"documentlibrary"}, {"pageId":"rmsearch"}]&amp;lt;/sitePages&amp;gt;
               &amp;lt;pageMetadata&amp;gt;{"documentlibrary":{"titleId":"page.rmDocumentLibrary.title", "descriptionId":"page.rmDocumentLibrary.description", "type":"dod5015"}}&amp;lt;/pageMetadata&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/page&amp;gt;
      &amp;lt;/pages&amp;gt;
   &amp;lt;/preset&amp;gt;

   &amp;lt;!-- Well known preset used to generate the Sharepoint protocol integration Site --&amp;gt;
   &amp;lt;preset id="document-workspace"&amp;gt;
      &amp;lt;components&amp;gt;
         &amp;lt;!-- title --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;title&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/title/collaboration-title&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- navigation --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;navigation&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/navigation/collaboration-navigation&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- dashboard components --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/colleagues&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/docsummary&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-2&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/activityfeed&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
      &amp;lt;/components&amp;gt;
      &amp;lt;pages&amp;gt;
         &amp;lt;page id="site/${siteid}/dashboard"&amp;gt;
            &amp;lt;title&amp;gt;Document Workspace Dashboard&amp;lt;/title&amp;gt;
            &amp;lt;title-id&amp;gt;page.workspace.title&amp;lt;/title-id&amp;gt;
            &amp;lt;description&amp;gt;Document Workspace dashboard page&amp;lt;/description&amp;gt;
            &amp;lt;description-id&amp;gt;page.workspace.description&amp;lt;/description-id&amp;gt;
            &amp;lt;template-instance&amp;gt;dashboard-2-columns-wide-left&amp;lt;/template-instance&amp;gt;
            &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;sitePages&amp;gt;[{"pageId":"documentlibrary"}, {"pageId":"links"}]&amp;lt;/sitePages&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/page&amp;gt;
      &amp;lt;/pages&amp;gt;
   &amp;lt;/preset&amp;gt;

   &amp;lt;!-- Well known preset used to generate the Sharepoint protocol integration meeting Site --&amp;gt;
   &amp;lt;preset id="meeting-workspace"&amp;gt;
      &amp;lt;components&amp;gt;
         &amp;lt;!-- title --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;title&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/title/collaboration-title&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- navigation --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;navigation&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/navigation/collaboration-navigation&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;!-- dashboard components --&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-1-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/colleagues&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-1&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/docsummary&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
         &amp;lt;component&amp;gt;
            &amp;lt;scope&amp;gt;page&amp;lt;/scope&amp;gt;
            &amp;lt;region-id&amp;gt;component-2-2&amp;lt;/region-id&amp;gt;
            &amp;lt;source-id&amp;gt;site/${siteid}/dashboard&amp;lt;/source-id&amp;gt;
            &amp;lt;url&amp;gt;/components/dashlets/activityfeed&amp;lt;/url&amp;gt;
         &amp;lt;/component&amp;gt;
      &amp;lt;/components&amp;gt;
      &amp;lt;pages&amp;gt;
         &amp;lt;page id="site/${siteid}/dashboard"&amp;gt;
            &amp;lt;title&amp;gt;Meeting Workspace Dashboard&amp;lt;/title&amp;gt;
            &amp;lt;title-id&amp;gt;page.meeting_workspace.title&amp;lt;/title-id&amp;gt;
            &amp;lt;description&amp;gt;Meeting Workspace dashboard page&amp;lt;/description&amp;gt;
            &amp;lt;description-id&amp;gt;page.meeting_workspace.description&amp;lt;/description-id&amp;gt;
            &amp;lt;template-instance&amp;gt;dashboard-2-columns-wide-left&amp;lt;/template-instance&amp;gt;
            &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt;
            &amp;lt;properties&amp;gt;
               &amp;lt;sitePages&amp;gt;[{"pageId":"documentlibrary"}, {"pageId":"calendar"}]&amp;lt;/sitePages&amp;gt;
            &amp;lt;/properties&amp;gt;
         &amp;lt;/page&amp;gt;
      &amp;lt;/pages&amp;gt;
   &amp;lt;/preset&amp;gt;&lt;/PRE&gt;&lt;P&gt;Another interesthing thing is that everything works fine with older sites that I added couple weeks ago even after I restart share. But if I add new sites I can't add any users later to site if I don't do it right after creating site.&lt;/P&gt;&lt;P&gt;My Share version is 6.2.0.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 16:06:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66840#M22416</guid>
      <dc:creator>galoman</dc:creator>
      <dc:date>2020-10-15T16:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66841#M22417</link>
      <description>&lt;P&gt;Did you find a solution? I seem to have the same issue in same version of Share&lt;/P&gt;</description>
      <pubDate>Fri, 09 Apr 2021 02:00:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66841#M22417</guid>
      <dc:creator>jasonreid</dc:creator>
      <dc:date>2021-04-09T02:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: I am can not goto Dashboard of site</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66842#M22418</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Please, did you find a solution for this ? I am getting the same issue in share version 7&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 23 Aug 2021 07:49:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/i-am-can-not-goto-dashboard-of-site/m-p/66842#M22418</guid>
      <dc:creator>Alf_Karim</dc:creator>
      <dc:date>2021-08-23T07:49:44Z</dc:date>
    </item>
  </channel>
</rss>

