"fatal error: cannot find feature..."
"fatal error: cannot find feature..."
In sharepoint site sometimes you may get this kind of errors, when you are going to connect your sharepoint site.
If you get this kind of errors then just do that following steps to solve it.
DO THE FOLLOWING:
In that above error, that should contain the name of some webparts.(note the webpartname)
check the following
central administration -> system setting -> manage form solution ->
There
check that feature(webpart) is there or not.If it is not present then deploy and install using below add & install command
add feature(or solution):(using sharepoint power shell):
Add-spsolution c:\xxx.wsp
install feature:
Install-spsolution -identity xxx.wsp -webapplication http://srv1:0000 -Gacdeployment -force
Install-spsolution -identity xxx.wsp -webapplication http://srv1:0000 -Gacdeployment -force
Instead of install you can directly deploy in central administration
THAT'S IT. PROBLEM SOLVED
Comments
Post a Comment