SharePoint 2010 spscore PlaceHolderPageTitle PageParserPath Bug

Actually not sure if this is a bug or whatever, but whenever we take a copy of a MySite masterpage in SharePoint 2010 and make our own copy of it we get this error about the PlaceHolderPageTitle and spscore. Don’t quite remember how we figured this out but I couldn’t find much googling or binging.

To fix this, you need to go into your SharePoint 2010 MySite web.config and replace the existing

1
<pageparserpaths></pageparserpaths>

with the PageParserPath to your MySite masterpage as shown below:

1
2
3
<pageparserpaths>
        <pageparserpath VirtualPath="/my/_catalogs/masterpage/New_MySite.master" CompilationMode="Always" AllowServerSideScript="true" />
      </pageparserpaths>
[del.icio.us] [Digg] [Facebook] [LinkedIn] [MySpace] [StumbleUpon] [Twitter] [Windows Live] [Yahoo!] [Email]

Popularity: 47% [?]

Read More

Modifying breadcrumb seperators in SharePoint

It’s a small change, but I always forget how to do this so I’m blogging it! Locate the siteMapPath control in the Master Page and add a PathSeperator attribute shown in the example below:

1
2
3
4
<code>
<asp :SiteMapPath ID="siteMapPath" Runat="server" 
SiteMapProvider="CurrentNavSiteMapProviderNoEncode" RenderCurrentNodeAsLink="false" SkipLinkText="" NodeStyle-CssClass="ms-sitemapdirectional" PathSeparator=" / "/>
</code>
[del.icio.us] [Digg] [Facebook] [LinkedIn] [MySpace] [StumbleUpon] [Twitter] [Windows Live] [Yahoo!] [Email]

Popularity: 16% [?]

Read More