Posts

Showing posts from March, 2014

[Solved: Visual Studio] SharePoint Ribbon control changes not reflecting.

Image
Following are the steps. Step 1. Open the Visual Studio Step 2. Open the ribbon feature that causing the problem. Step 3. Go the feature manager window by double click the feature. Step 4. Press F4, It will opens the property window. Step 5. You will see the Version property empty. Step 6. Give the Feature Version number and save the feature. Step 7. Deploy the WSP.

[Solved: Visual Studio Issue] Error occurred in deployment step 'Add Solution': A feature with ID 15/79d06575-2dbb-435f-939f-65e22c2ce360 has already been installed in this farm. Use the force attribute to explicitly re-install the feature.

Image
Open the visual Studio and navigate to the feature XML file and add the bellow attribute. AlwaysForceInstall = " TRUE " The <FeatureName>.Template.Xml output would be some think link this. <? xml version = " 1.0 " encoding = " utf-8 " ?> < Feature xmlns = " http://schemas.microsoft.com/sharepoint/ " AlwaysForceInstall = " TRUE " > </ Feature > After doing the above step the problem solved.