Hello,
I am having an odd one. We have SharePoint and Project Server 2013 installed and in a test environment. Everyhting seemed to insrall just fine and I let it set for a few days just because. I have been resolving the errors as the arrive and so far so goo. I have one that I can not see to resolve. The error is
[MissingWebPart] WebPart class [28c23aec-2537-68b3-43b6-845b13cea19f] is referenced [1] times in the database [WSS_Content_39eabec0803b49e1a299a34dcceaf802], but is not installed on the current farm. Please install any feature/solution which contains this web part. One or more web parts are referenced in the database [WSS_Content_39eabec0803b49e1a299a34dcceaf802], but are not installed on the current farm. Please install any feature or solution which contains these web parts.
So I build a quick sql querry
use [WSS_Content_39eabec0803b49e1a299a34dcceaf802]
select DirName,LeafNamefrom dbo.AllDocswhere idin
(select tp_PageUrlIDfrom dbo.AllWebPartswhere
(tp_WebPartTypeID='28c23aec-2537-68b3-43b6-845b13cea19f')
)
go
It returns "DirName PWA" and "LeafName MyWork.aspx". I try to access the page amnd get page not found. How do I fix this?
TIA,
Jim