Showing posts with label SharePoint issue. Show all posts
Showing posts with label SharePoint issue. Show all posts

Tuesday, December 3, 2013

SharePoint connected Web Part not showing connections option

Possible reasons include the following:
  • You are not browsing a web part in edit mode. To set connection with other web part, Page should be in edit mode.
  • Web part connection not allowed in the Web Application. To enable web part connection follow below steps: 1)   Open the central administration
    2)   Application management
    3)   Web applications
    4)   Manage web applications
    5)   Select the web application for which you would like to enable the option
    6)   On the top-Ribbon-You will find an option as ‘webpart security’
    7)   Click on it and you will get one frame window which specifies ‘security for web pages
    8)   Here you will find the option of Web part connections
    9)   Select the option “Allows users to create connections between Web Parts”
    1)   Open the central administration
    2)   Application management
    3)   Web applications
    4)   Manage web applications
    5)   Select the web application for which you would like to enable the option
    6)   On the top-Ribbon-You will find an option as ‘webpart security’
    7)   Click on it and you will get one frame window which specifies ‘security for web pages
    8)   Here you will find the option of Web part connections
    9)   Select the option “Allows users to create connections between Web Parts”
    - See more at: http://sharepointknowledgebase.blogspot.in/2013/09/webpart-security-disable-web-part.html#sthash.gSlOHy8q.dpuf
    1)   Open the central administration
    2)   Application management
    3)   Web applications
    4)   Manage web applications
    5)   Select the web application for which you would like to enable the option
    6)   On the top-Ribbon-You will find an option as ‘webpart security’
    7)   Click on it and you will get one frame window which specifies ‘security for web pages
    8)   Here you will find the option of Web part connections
    9)   Select the option “Allows users to create connections between Web Parts”
    - See more at: http://sharepointknowledgebase.blogspot.in/2013/09/webpart-security-disable-web-part.html#sthash.gSlOHy8q.dpuf
  • The web part is not added to Web Part Zone. The page should be Web part Zone Page.

More at:


Tuesday, November 19, 2013

Could not find stored procedure 'sp_dboption' while installing SharePoint with SQL 2012

To make use of SQL 2012 with SharePoint 2010 server should have SharePoint Service Pack 1 installed.


Or


You can go ahead with alter

http://beyondrelational.com/modules/2/blogs/28/Posts/15429/replacement-for-system-stored-procedure-spdboption-in-sql-server-2012-denali.aspx?utm_source=brdigest&utm_medium=email&utm_campaign=dailydigest



Cannot connect to the configuration database. SharePoint 2010

1. Run prompt
2. Type  Services.msc
3. Start SQL Server (MSSQLSERVER) service



Thursday, October 31, 2013

Show SharePoint Error Page instead of Yellow ASP.Net error page

To show SharePoint errorpage do below changes in Web.Config file:

<SafeModeMaxControls="200"CallStack="false"DirectFileDependencies="10"TotalFileDependencies="50"AllowPageLevelTrace="false">

and

<customErrorsmode="On" />


To See Error message on Page itself do below changed in Web.Config file

<SafeModeMaxControls="200"CallStack="true"DirectFileDependencies="10"TotalFileDependencies="50"AllowPageLevelTrace="false">

and

<customErrorsmode="Off" />

Monday, October 14, 2013

Application pool keeps stopping / Service Unavailable in SharePoint Site / 503 error in SharePoint Site

One cause for this issue can be change in password for account with which Application pool is running for changing the Managed account password follow below blog post:
(Never change it from IIS directly)
 
If this is not your case then it can be below issue:
If you check the eventvwr logs you will see below entry in it:
The Module DLL 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\owssvr.dll' could not be loaded due to a configuration problem. The current configuration only supports loading images built for a x86 processor architecture.
 
Solution:
1.       Open IIS by typing inetmgr in RUN.
2.       Click on Application pools
3.       Click on particular Application pool for your site
4.       Right Click Advance settings
5.       Set Enable 32-bit applications to false


 

Thursday, September 26, 2013

SharePoint DateTime control not loading for some user (DateTimeControl Access denied )

It is a permission issue.
 
DateTimeControl field uses the iframe calender page to render the actual calender. The location of iframe.aspx is C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS
The problem appeared to be with managed paths in the site collections, the Users with "Contribute access" were accessing the following path:
http://myserver/_layouts/iframe.aspx (Path to Root site collection where user doesn't have access)
 
 
The solution:

Friday, May 31, 2013

Discussion Board SharePoint Invalid index. (Exception from HRESULT: 0×80070585)

I got this error When I created SharePoint Discussion Board using C# code.

Resolution

  • Navigate to List Settings
  • Open Current View
  • Unchecked Last Updated field
  • Save view
  • Enjoy
  • SharePoint document metadata not updating

    I faced a weird issue today, Metadata for document which has lookup column was not updating even after saving the item. There was no erro...