Quantcast
Channel: SharePoint 2010 - General Discussions and Questions forum
Viewing all 17574 articles
Browse latest View live

Unable to access central administration - Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))

$
0
0

Hi,

I am getting this error when I try to access central administration on a SharePoint 2010 server.

Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))

Also, unable to access any of the individual sites - giving the following error:

Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED))

Checking the event viewer found the following:

Event code: 3005
Event message: An unhandled exception has occurred.
Event ID: e6a7c9d41c834c48a1529a9be8383052
Event sequence: 24
Event occurrence: 6
Event detail code: 0
 
Application information:
    Application domain: /LM/W3SVC/1845838192/ROOT-2-130085141031120314
    Trust level: WSS_Minimal
    Application Virtual Path: /
    Application Path: C:\inetpub\wwwroot\wss\VirtualDirectories\80\
    Machine name: DEVEN-PC
 
Process information:
    Process ID: 5272
    Process name: w3wp.exe
    Account name: NT AUTHORITY\NETWORK SERVICE
 
Exception information:
    Exception type: SPException
    Exception message: Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED))
 
 
Thread information:
    Thread ID: 12
    Thread account name: NT AUTHORITY\NETWORK SERVICE
    Is impersonating: False
    Stack trace:    at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)
   at Microsoft.SharePoint.Library.SPRequest.SetVar(String bstrUrl, String bstrName, String bstrValue)
   at Microsoft.SharePoint.SPListItemCollection.EnsureListItemsData()
   at Microsoft.SharePoint.SPListItemCollection.get_Count()
   at Microsoft.SharePoint.SPList.GetItemById(String strId, Int32 id, String strRootFolder, Boolean cacheRowsetAndId, String strViewFields, Boolean bDatesInUtc)
   at Microsoft.SharePoint.SPContext.get_Item()
   at Microsoft.SharePoint.SPContext.get_Fields()
   at Microsoft.SharePoint.WebControls.FieldMetadata.get_Field()
   at Microsoft.SharePoint.WebControls.FormField.CreateChildControls()
   at System.Web.UI.Control.EnsureChildControls()
   at Microsoft.SharePoint.WebPartPages.WikiEditPage.OnLoad(EventArgs e)
   at System.Web.UI.Control.LoadRecursive()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
 
Also, tried accessing the SharePoint Products Configuration Wizard but that too fails with the following exception:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
Microsoft.SharePoint.SPException ---> System.Runtime.InteropServices.COMException (0x80020009): <nativehr>0x80020009</nativehr><nativestack></nativestack>
   at Microsoft.SharePoint.Library.SPRequestInternalClass.WebTemplateName(String bstrUrl)
   at Microsoft.SharePoint.Library.SPRequest.WebTemplateName(String bstrUrl)
   --- End of inner exception stack trace ---
   at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)
   at Microsoft.SharePoint.Library.SPRequest.WebTemplateName(String bstrUrl)
   at Microsoft.SharePoint.SPWeb.get_WebTemplate()
   at Microsoft.SharePoint.SPEvaluatorModeProvisioning.TryGetIsSiteProvisioned(String template, String relativePath, Nullable`1 port, SPSite& provisionedSite, SPWeb& provisionedWeb, Uri& provisionedUri)
   at Microsoft.SharePoint.PostSetupConfiguration.WelcomeForm.ShowNextFormForServerRoleSingleServer()
   at Microsoft.SharePoint.PostSetupConfiguration.WelcomeForm.PsconfigBaseFormNextButtonClickedEventHandler(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Can anyone please let me know what could be wrong:

Note: I have already checked the services/database/IIS/application pools are running. Tried IISreset but no luck.


few questions about versions (for libraries)

$
0
0

Hello,

I am going to enable versions on all libraries in our SharePoint 2013 environment and have few questions (did not find answers on the MS site):
1. How does SP store versions for a file, does it save only changes or everything? E.g. I have 3 Mb file which has 10 versions. Will this file use 30 Mb in the DB or less?
2. Is there any way (except scheduled PS script) to limit number of versions and do not allow to change them? I am going to allow 5 Major versions on each library, but people with FullControl can change this.

error during feature activation "Timeout while waiting for sandboxed code execution request to complete within the worker process"

$
0
0

Hi everybody

I'm creating a feature in a sandboxed solution (feature scope : SPWeb).

My feature is suppose to create a subsite on the Site in which it has been activated.

this is the code inside the feature receiver :

publicoverridevoid FeatureActivated(SPFeatureReceiverProperties properties)
    {
      SPWeb site = properties.Feature.Parent as SPWeb;
      {try
        {if (site.IsRootWeb)
          {// Get Web Template
            SPWebTemplateCollection webTemplates = site.Site.RootWeb.GetAvailableWebTemplates(site.Language);
            SPWebTemplate webTemplate = (from SPWebTemplate tin webTemplateswhere t.Title == "Local Site"select t).FirstOrDefault();string url = site.IsRootWeb ? "subnews" : site.ServerRelativeUrl.Substring(1) + "/subnews";int i = 0;while (true)
            {try
              {
                SPWeb ssite = site.Webs.Add(url+i++, url, "", site.Language, webTemplate, false, false);break;
              }catch
              {continue;
              }
            }

            site.Update();
          }

        }
        catch (Exception ex)
        {
          site.Title = site.ServerRelativeUrl + " :" + ex.Message + " " + ex.StackTrace;
          site.RootWeb.Update();
        }
      }
    }

Each time I try to activate that feature I get the following error :

Error occurred in deployment step 'Activate Features': Timeout while waiting for sandboxed code execution request to complete within the worker process.

I don't where this come from or how to avoid it

Any idea ??


NIMONG Lionel, beginner on sharepoint

MHT File doesn't display right

$
0
0
I have an MHT Word file with a table in it. When I look at the file, everything displays correctly. When I look at the table in the Page View Web Part, there are extra blank lines in the table and the colors have changed. Even if I use an old version, the display has changed. What used to be displayed in 9" now takes 13".  Also, previously, I used the default for the chrome and there was a title but no border. Any help is very much appreciated.

Custom error page for 404

$
0
0

I have implemented custom 404 page in my SharePoint 2010 environment to display custom message whenever user encountered any 404 error. I have added the below configuration in my application web.config file

<httpErrors existingResponse="Replace" errorMode="Custom">
      <remove statusCode="404" subStatusCode="-1" />
      <error statusCode="404" prefixLanguageFilePath="" path="/custom/error404.html" responseMode="Redirect" />
</httpErrors>

The above redirection working fine without any issue, but I am getting different error while creating a new document directly (go to library->click on documents tab->click on new document). I am getting the below while saving the document directly in sharepoint application

A device attached to the system is not functioning

Please let me know if any one has got idea about this, how to avoid this error with custom 404 page implementation 

Not able to see the content in the document library by users who have less permission than Full control

$
0
0

Hi all,

Greetings,

I am facing a very unique problem, we have migrated the files/folders from exchange public folder into the SharePoint 2010 document libraries through the AVEPOINT's migration tool "DOCAVE". In one of the document library we have given the permission to some of the users through power shell scripts. Recently when we are verifying the permissions and content, we come to know that document library not showing the content to the user who have less permission than Full control. Hence if the user even have the contribute permission not able to see the content, but he can see the "+Add document" ICON. Furthermore the document library ribbon also works hide/show the menu as per the user's permission. 

The unique part is that when the users uses "open with explorer" option it shows the users the right content as per the permission. I have already done the following checks

  1. Give one user the full control and add the document though his session. after that I remove the full control permission(only read permission now) and user can only see the recent uploaded document by him.
  2. This document library have folders structure and unique permission at all folders level so it will impossible to copy folders in to another document library and provide the right permission

  

Please do let me know if i am missing any thing in this regards,



Shakir Majeed Khan, MCITP (SharePoint 2010), MCPD(SharePoint 2010)

SharePoint Server 2010 Foundation slipstream media SP2

$
0
0

 I have an MSDN license.  The problem I am having is that I need to installSharePoint Server 2010 Foundation onWindows Server 2012 R2.  According to this article below;

https://support.microsoft.com/en-us/kb/2724471

In order to install Sharepoint Server 2010 on Windows Server 2012 R2 I need SharePoint Server 2010 slipstream media SP2.  The problem is, I am unable to locate this on the MSDN site.  Do you know how I can obtain this media?  Please let me know at your earliest convenience.


Thanks, Scott

Information Management Policy is not moving list items to Drop Off Library

$
0
0

I am trying to use Information Management Policy to move workflow history list items in a site to a drop off library in a separate site collection that has been defined as a drop-off point. In my workflow history list, in Information Management Policy Settings, I have defined a information management policy to move list items with a "Date Occurred" + 10 days to the destination location. I have verified there are items which match the condition.

In Central Admin, I have manually fired off the "information management policy" and "Expiration policy" jobs. Both jobs run successfully, but none of the list items ever move.

I tried again, this time with ULS Viewer running while I manually fired off the timer jobs. As I run the "Expiration policy" job, the ULS shows each of the affected list items being processed, but the ULS message is:

Skipping retention processing for item {item id} on web {site url} because the expiration action could not be retrieved for schedule: <data stageId="1"><formula id="Microsoft.Office.RecordsManagement.PolicyFeatures.Expiration.Formula.BuiltIn"><number>10</number><property>Occurred</property><propertyId>{guid}</propertyId><period>days</period></formula><action type="action" id="Microsoft.Office.RecordsManagement.PolicyFeatures.Expiration.Action.SubmitFileMove" destnExplanation="{explanation}" destnId="{guid}" destnName="{destination name}" destnUrl="{site url}/_vti_bin/OfficialFile.asmx" /></data>
I can see from the ULS logs that it is clear that the correct items are being identified, and I see the part about "...because the expiration action could not be retrieved for schedule...", but what do I do about this? 


How to modify the Document Information Panel for the "Add Document" link

$
0
0
Is it possible to modify the DIP for the "+Add Document" link when uploading an existing document to the Library?  I already modified the DIP in Infopath for creating a new document.  But this does not show when uploading an existing document -- I only get the generic DIP.  I don't see anything on this subject.  Thanks

MS Access 2013 & Sharepoint 2010 Web app

$
0
0

Hello,

Is MS access 2013 web app/database compatible with Sharepoint 2010? I can't seem to publish an Access 2013 web database to my corporate sharepoint (2010), keep getting a http 404 error. Just wanting a confirmation here.

Thanks,

Alan!

Recommended metadata update and maintenance strategies and techniques

$
0
0

Hello,

In my organization, we're using SharePoint 2010 on premises.

We are trying to organize contents using custom columns and content-types.

For those columns which are choice dependent, we would like to use either lookup columns (in a list) or managed metadata.

My questions relate to recommended practices and techniques to ease metadata update and maintenance in order to reduce maintenance costs.

1/ Using Lookup columns

- What happens to existing item properties when you update a lookup list item ? Does the update propagate to items having set the property ? Can this be controlled (i.e. you chose when the update propagates or not) ? How ?

2/ Using Managed metadata

- What happens to existing item properties when you update a term ? Does the update propagate to items having set the property ? Can this be controlled (i.e. you chose when the update propagates or not) ? How ?

3/ General recommendations

What are the general recommendations and best practices around this question ?

Thanks


What is the recommended maximum number of co-authoring authors?

$
0
0
When configuring the maximum number of co-authoring authors as instructed here, what is the recommended maximum? Or is there a guideline for computing the recommended maximum number?

Edit Text Fields on my Profile Site

$
0
0

Hi,

please help with a really stupid question ;-) Where can i edit the text fields on the My Profile Site? I'm talking about the fields next to the profile picture.

Kind Regards

Marc

Picture Library Slideshow web part and top menu bar conflict (SP210)

$
0
0

Hello All,

When we add Picture Library Slideshow web part it conflicts with Top Menu bar and does not show any links when we hover over the menu.

I tried adding explicitly the required JS which is missing when we add the web-part is listed below

SP.UI.MyLinksRibbon.js
sp.ui.pub.ribbon.js
sp.ribbon.js

Does anyone faced this situation?

Many Thanks!!!

Regards,

Sujeet

An error occurred while trying to connect to a Web service + Infopath 2010 + SharePoint 2010

$
0
0

We have designed an InfoPath form which is browser enabled and we are trying to call OOB web service named –GETUSERPROFILEBYNAME so as soon as the forms loads then it has to show the name of logged-in user but it’s failing every time and giving the following error message:

An error occurred while trying to connect to a Web service.

An entry has been added to the Windows event log of the server.

Log ID: 5566

Correlation ID: 00421dc6-3182-4d05-bcb0-24c50383598d

We have checked the logs based on this correlation id and got the following message:Data adapter failed during OnLoad: Unable to connect to the remote server

Topology:This is a development environment which has only one server i.e. WFE

Also- we have already added the site inside the host file.

We need your inputs by which we can resolve this issue as soon as possible, Thank you.


How to use a list/library custom columns from Outlook ?

$
0
0

In SharePoint, we have a ribbon command to connect a list or library to Outlook :

What that does is make the list or library available in outlook in a separate PST (SharePoint lists, see blue box below) :

Any folder that you've used also appears in the navigation pane (see "Archive" folder below "Transformation and PMO..." in blue box above).

You can arrange the view and select columns to display using the outlook usual menus (red box above).

Suppose, however, that you've organized the list of library flat (no folders) and are using custom columns and views with filter and group by on the web.

How do you use such a list or library from outlook ? Can you select custom columns in outlook menus ? How ? Help please !

Cannot Publish Slides from PowerPoint 2013 to SharePoint 2010 Slide Library

$
0
0

I have the 64-bit version of Windows 8 Release v1.0, Internet Explorer version 10 (10.0.9200.17183), Office 2013 Professional 32-bit, and a SharePoint 2010 environment.  I cannot publish slides to the SharePoint environment at all.  When I attempt to do so from PowerPoint 2013, I receive an error indicating all slides (X of X) failed to upload.  When I attempt to use the option in the SharePoint 2010 Slide Library (Upload > Publish Slides) I receive the error of "This feature requires Microsoft Office PowerPoint 2007.  Either the application is not installed, or your browser is not configured to support ActiveX controls."

I have added the URL for the site in question to my "Trusted Sites" in Internet Explorer 10.  I read through the KB 2716529.  There is no TabProcGrowth registry entry under HKEY_CURRENT_USER, but there is one under HKEY_LOCAL_MACHINE and the value is set to "Medium" which appears to be accurate.  I tried running the "Fix it For Me" option offered with that KB, and the wizard indicated the problem could not be found on my computer.

How can I resolve this issue?  Utilizing slide libraries is a very important feature of SharePoint for my organization, and going back to Office 2010 is simply not an option. 

InfoPath 2010 - Date Picker

$
0
0

Hi all, I’m new to InfoPath and am using example by “SharePoint 713” where you create 2 workflows that sends email reminders using loops. I am trying to use date picker on InfoPath form so that user is reminded 10 days later in an email using workflow (SPD). But how do you get the variable in date picker to the workflow?

For example, the user selects 1/22 then:

If Current Item:date equals ?

Stop the workflow and log “Condition not met”

Else

                Set Schedule Email to “wait”

If ? equals ?

                then Pause for 10 days, 0 hours, 0 minutes

I’m at a lost! Does anybody have a solution? Thanks so much for any help!

is Microsoft SQL Server 2014 Enterprise compatible with SharePoint 2010 Standard Editions

$
0
0
We are currently on SharePoint 2010 Standard Edition. The DBA wants to move the SharePoint databases from 2008 RS to a SQL Server 2014 Enterprise Server. Is SharePoint 2020 Standard compatible with SQL Server 2014 Enterprise if we move the databases. We are familiar with how to go about moving the database but wanted to check in to make sure SQL Server 2014 is compatible and does not cause a lot of problem with the current Security SharePoint 2010 and internal workings.

SharePoint 2010 - Mysite - Add Colleague - ADFS Authentication Trusted Provider - Permissions

$
0
0

Hi everyone!


Bit of a strange issue here, which I just can't seem to solve. I'll start by explaining the environment:


Environment


SharePoint 2010 Enterprise, Build Number 14.0.7113.5000

Windows Server 2008 R2

IIS 7.5


Web Application Authentication Specifics


Web application has 3 zones for different Authentication Methods:

* Default Zone - Custom Trusted Identity Provider (ADFS)

* Intranet Zone - NTLM

* Extranet Zone - FBA


Mysite Location


Mysite is actually configured in 2 locations, both sharing the same Content DB, although only one of the locations is being used.


1) Managed Path : /mysite/

2) Separate Web Application running on alternative port (Not being used)


Side note : I am not sure why there are 2 instances of this. While the issue I have noticed is apparent in both sites, I am only concerned with regards to mysite instance #1.


Issue


A strange situation has been found where users who Authenticate via the ADFS Custom Identity Provider (i.e. all users of the site) cannot access any links to do with adding a colleague (aka "QuickLinksDialogForm.aspx"). This includes the following links : 


1) Add Colleagues (This link throws an "Unauthorised" message)

2) View Suggestions (This link throws an "Unauthorised" message)

3) Edit Colleagues (This link does nothing)

4) Remove Colleagues (This link does nothing)


If a user who gets authenticated via NTLM (i.e. the back end hosting team), these links work fine.


Side note : FBA Users cannot access /mysite/ at all. This is fine.


About the error message


Screenshot : The unauthorised error message.




This error message is actually an in-screen pop-up. It is displayed whenever "QuickLinksDialogForm.aspx" is called by an ADFS user.

This is unfortunate, as "QuickLinksDialogForm.aspx" is actually located within the SharePoint 14 hive in the LAYOUTS folder 

"C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS\QuickLinksDialogForm.aspx"

Screenshot : The Quicklinks .aspx files within the LAYOUTS folder in the 14 hive.



If an NTLM user accesses this link, the correct content is displayed: 


Screenshot : Correctly loading content.




I have tried to find the reason for this issue, and have so far been unable to figure it out.

SharePoint is complaining about permissions, however the same issue occurs even when a user is given Full Control, Site Collection Administrator, and even Full Control Policy on the Web Application. It makes no difference.


I have looked at this issue from multiple angles, from permissions, to encoding, and to claims.

My best guess is that there is some issue with claims, although I have not being able to capture any proof in ULS, F12 Dev Tools or Fiddler.

The only thing I have not done is wiresharked the packets to see what is happening behind the scenes.


I do not have visibility over the ADFS side of things, however I have a contact over there who could possibly have access to answer any specific questions that may arise.


Has anyone seen this behaviour before?


Kind Regards,

Pete

Viewing all 17574 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>