Error: "An unexpected error has occurred" in almost all the list and document library pages in SharePoint site
Cause: Changed the master page from SharePoint designer by right clicking the master page file and selecting "Set as default master page".
Resolution: By updating the callstack=true in web.config file of the web application, we got more detailed error message
Cannot find ContentPlaceHolder 'PlaceHolderPageTitle' in the master page '~masterurl/default.master', verify content control's ContentPlaceHolderID attribute in the content page
Opened the master page in the SharePoint designer and noticed that the PlaceHolderPageTitle is missing.
So replaced the below line
<Title>Our Company Intranet</Title>
with
<Title ID=onetidTitle><asp:ContentPlaceHolder id=PlaceHolderPageTitle runat="server"/></Title>
and save the master page.
Cause: Changed the master page from SharePoint designer by right clicking the master page file and selecting "Set as default master page".
Resolution: By updating the callstack=true in web.config file of the web application, we got more detailed error message
Cannot find ContentPlaceHolder 'PlaceHolderPageTitle' in the master page '~masterurl/default.master', verify content control's ContentPlaceHolderID attribute in the content page
Opened the master page in the SharePoint designer and noticed that the PlaceHolderPageTitle is missing.
So replaced the below line
<Title>Our Company Intranet</Title>
with
<Title ID=onetidTitle><asp:ContentPlaceHolder id=PlaceHolderPageTitle runat="server"/></Title>
and save the master page.
No comments:
Post a Comment