Quantcast
Channel: SharePoint 2013 - Setup, Upgrade, Administration and Operations forum
Viewing all 21070 articles
Browse latest View live

Previous Version of workflows unexpectedly activating

$
0
0

We've come across a problem on our farm where old versions of workflows are unexpectedly activating. 

As one example, we have a core workflow that has been updated frequently over the last few years.  One morning, users suddenly complained about receiving dozens of emails for a single field change.  After investigation, we found in the workflow settings page that all of the "Previous Versions" had suddenly been set to "Allow" instead "No New Instances".  The single field change was firing an instance for each previous version hence all the extra emails.  

Any idea what might have caused this?  It has happened on multiple workflows throughout our site.  Right now it appears isolated only to 2010 workflows that existed before our upgrade to 2013 (although the workflows were fine immediately after the upgrade). 


No system manager locations set, search application might not be ready yet

$
0
0

Hi,

I am just setting up a new SharePoint 2013 environment (Windows server 2008 R2 + SQL Server 2008 R2) and I am getting this error message in powershell when I try to save my new search topology: No system manager locations set, search application might not be ready yet. The installation script used to install and create the search service originates from this link: http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=378 and I receive the error message after running $clone.Activate().

ULS is writing this:

05-29-2013 14:57:00.94	mssearch.exe (0x19C0)	0x1A68	SharePoint Server Search	Crawler:Content Plugin	cd11	Critical	Content Plugin can not be initialized - list of CSS addresses is not set.	
05-29-2013 14:56:08.27	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	dkd5	High	synchronizing search service instance	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:08.27	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	eff0	High	synchronizing search data access service instance	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.38	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	ajzc7	Medium	Cleanup of Orphan Systems in server SR00667	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.46	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	agwve	Medium	Synchronizing legacy admin	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.46	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	ai4f1	High	Unable to get systemmanagerlocation from db	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.46	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	ai84s	Medium	Skipping legacy admin sync as there is no system manager location set	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.46	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	agwvc	Medium	Skipping Topology Synchronize.The active topology does not have any Components.	8f28209c-5d35-a0cc-7fad-bd7b088335ee
05-29-2013 14:56:09.46	OWSTIMER.EXE (0x09B0)	0x1304	SharePoint Server Search	Administration	ajnco	Medium	Cleaning up Orphan nodes in system : 7B4831	8f28209c-5d35-a0cc-7fad-bd7b088335ee

So basically all else is going fine before saving the clone. Application pool is created, search service and it´s proxy is created (the databases are also created in SQL). The clone is after this created and then the components are added.

I have tested with both March and April CU. I use separate accouns for search service, installation and so on. I have tested giving the search application pool account local admin right but didnt make any difference.

Some posts in Internet around this matter is pointing towards there might be 4 missing patches like here: http://blog.steigis.ch/sharepoint/sps2013/search-in-starting-state/  They are all installed on my server.

Search host controller service and SharePoint Server Search are started.

Before creating the service I ran this. I have done this on all my other installations of search to solve the problem with the host service is in "starting" state. Info taken from here: http://mmman.itgroove.net/2012/12/search-host-controller-service-in-starting-state-sharepoint-2013-8/

$acl = Get-Acl HKLM:\System\CurrentControlSet\Control\ComputerName
$person = [System.Security.Principal.NTAccount] "Users"
$access = [System.Security.AccessControl.RegistryRights]::FullControl
$inheritance = [System.Security.AccessControl.InheritanceFlags] "ContainerInherit, ObjectInherit"
$propagation = [System.Security.AccessControl.PropagationFlags]::None
$type = [System.Security.AccessControl.AccessControlType]::Allow
$rule = New-Object System.Security.AccessControl.RegistryAccessRule($person, $access, $inheritance, $propagation, $type)
$acl.AddAccessRule($rule)
Set-Acl HKLM:\System\CurrentControlSet\Control\ComputerName $acl
$sh = Get-SPServiceInstance | ? {$_.TypeName -eq "Search Host Controller Service"}

After this I do a server restart and continue with creating the search service and its components.

Any ideas?

projContext.executeQueryAsync fails - JSOM - Project Server 2013 Online

$
0
0
I'm trying to build a very simple JSOM app using Napa, that would list the projects created, but I'm getting the following exception: 

    Unexpected response from server. The status code of response is '500'. The status text of response is 'Internal Server Error'.

    Microsoft.SharePoint.Client.ResourceNotFoundException
    Cannot find resource for the request ProcessQuery

Here's a piece of my code:

Default.aspx

    ...
    <script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script>
    <script type="text/javascript" src="/_layouts/15/sp.js"></script>
    <script type="text/javascript" src="/_layouts/15/ps.js"></script>
    ...

App.js

    // Declare global variables.
    var projContext;
    var projects;

    $(document).ready(function () {
        SP.SOD.executeOrDelayUntilScriptLoaded(GetProjects, "ps.js");
    });

    // Get the projects collection.
    function GetProjects() {

        // Display a message to the user to show we are reading the projects. 
        $('#spanMessage').text('Reading projects...');

        // Initialize the current client context.
        projContext = PS.ProjectContext.get_current();

        // Get the projects collection.
        projects = projContext.get_projects();

        // Register the request for information that you want to run on the server.
        projContext.load(projects);

        // Run the request on the server.
        projContext.executeQueryAsync(IterateThroughProjects, QueryFailed);
    }

    function IterateThroughProjects(response) {
        // Get the enumerator and iterate through the collection.
        var enumerator = projects.getEnumerator();
        while (enumerator.moveNext()) {
            var project = enumerator.get_current();

            // Get the target project and then check it out. The checkOut function
            // returns the draft version of the project.
            var draftProject = project.checkOut();

            // Specify "true" to also check the project in.
            var publishJob = draftProject.publish(true);

            // Register the job that you want to run on the server and specify the
            // timeout duration and callback function.
            projContext.waitForQueueAsync(publishJob, 30, QueueJobSent);
        }
    }

Cant start User Profile Sync Service

$
0
0

I have tested below condition and everything in right place but still I am not able to start the services

  1. You must run the UPA Service Instance as the Farm Account.
  2. Farm Account must be a local administrator of the machine running the UPA Service Instance during provisioning only.
  3. Farm Account must have Log on Locally rights.
  4. The Synchronization Connection Account must have Replicating Directory Changes..
  5. Sharepoint webservices application pool  started  in IIS.

During the start process it get this error.

UserProfileApplication.SynchronizeMIIS: Begin setup for 'Hamra User Profile Service'.
ILM Configuration: Configuring database
UserProfileApplication.SynchronizeMIIS: Failed to configure MIIS post database, will attempt during next rerun. Exception: System.Runtime.InteropServices.SEHException (0x80004005): External component has thrown an exception.    
 at Microsoft.Office.Server.UserProfiles.Synchronization.ILMPostSetupConfiguration.ConfigureMiisStage2()    
 at Microsoft.Office.Server.Administration.UserProfileApplication.SetupSynchronizationService(ProfileSynchronizationServiceInstance profileSyncInstance).
UserProfileApplication.SynchronizeMIIS: End setup for 'Hamra User Profile Service'.

After it fails i get this error

User Profile Application: SynchronizeMIIS encounters an exception: System.NullReferenceException: Object reference not set to an instance of an object.    
 at Microsoft.Office.Server.UserProfiles.UserProfileImportJob.<>c__DisplayClass2.<IsTimerJobRunning>b__1()    
 at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
 at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)    
 at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)    
 at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated secureCode)    
 at Microsoft.Office.Server.UserProfiles.UserProfileImportJob.IsTimerJobRunning(UserProfileApplicationJob timerJob)    
 at Microsoft.Office.Server.Administration.UserProfileApplication.SynchronizeMIIS()    
 at Microsoft.Office.Server.Administration.ILMProfileSynchronizationJob.Execute()

Navigation is not working After Upgrade site collection SP2010 to SP2013

$
0
0

Dears,

I upgrade 2010 site by using Mount DB command...

After that run Visual upgrade..

When site collection admin login its shows error on left and top menu

An error occurred while browser Uniform Resource Locator (URL) Required: /.Exception message: Object reference not set to an instance of an object.
   
at Microsoft.SharePoint.Publishing.CachedPage .. ctor (PublishingPage page, SPListItem altItem, String id, String parentId, CachedUserResource title, String url, CachedUserResource description, CachedObjectFactory factory, List `1 & fieldInfo)
   
at Microsoft.SharePoint.Publishing.CachedPage.CreateCachedPage (PublishingPage page, SPListItem altItem, CachedObjectFactory factory, List `1 & fieldInfo)
   
at Microsoft.SharePoint.Publishing.CachedListItem.CreateCachedListItem (SPListItem item, SPListItem alternateItem, Boolean parentIsWeb, CachedObjectFactory factory, List `1 & fieldInfo)
   
at Microsoft.SharePoint.Publishing.CachedObjectFactory.CreateWrappedObject (SPListItem superUserVersion, SPListItem superReaderVersion, List `1 & fieldInfo)
   
at Microsoft.SharePoint.Publishing.CachedArea.GetChildForListByQuery (String listName, SPQuery query, SPWeb contextWeb, Boolean onlyPopulateCache, Boolean skipIfThrottled, List `1 & itemsFetched)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.FetchDynamicItems (PublishingWeb pubWeb, NodeTypes includedTypes, Boolean & websFetched, Boolean & pagesFetched)
   
at includedTypes)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildren (NodeTypes includedTypes)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren (NodeTypes includedTypes, NodeTypes includedHiddenTypes, Boolean trimmingEnabled, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren (NodeTypes includedTypes, NodeTypes includedHiddenTypes, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren (NodeTypes includedHiddenTypes)
   
at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider.GetChildNodes (PortalSiteMapNode node, NodeTypes includedHiddenTypes

When browse Navigation Area Settings "_layouts/15/AreaNavigationSettings.aspx"

its shows below Error

Server Error in '/' Application.

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.] Microsoft.SharePoint.Publishing.PublishingPage.GetEffectivePageCacheProfileId(Boolean anonUserProfile) +121 Microsoft.SharePoint.Publishing.CachedPage..ctor(PublishingPage page, SPListItem altItem, String id, String parentId, CachedUserResource title, String url, CachedUserResource description, CachedObjectFactory factory, List`1& fieldInfo) +791 Microsoft.SharePoint.Publishing.CachedPage.CreateCachedPage(PublishingPage page, SPListItem altItem, CachedObjectFactory factory, List`1& fieldInfo) +347 Microsoft.SharePoint.Publishing.CachedListItem.CreateCachedListItem(SPListItem item, SPListItem alternateItem, Boolean parentIsWeb, CachedObjectFactory factory, List`1& fieldInfo) +128 Microsoft.SharePoint.Publishing.CachedObjectFactory.CreateWrappedObject(SPListItem superUserVersion, SPListItem superReaderVersion, List`1& fieldInfo) +257 Microsoft.SharePoint.Publishing.CachedArea.GetChildForListByQuery(String listName, SPQuery query, SPWeb contextWeb, Boolean onlyPopulateCache, Boolean skipIfThrottled, List`1& itemsFetched) +3557 Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.FetchDynamicItems(PublishingWeb pubWeb, NodeTypes includedTypes, Boolean& websFetched, Boolean& pagesFetched) +1720 Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildrenInner(NodeTypes includedTypes) +1075 Microsoft.SharePoint.Publishing.Navigation.PortalWebSiteMapNode.PopulateNavigationChildren(NodeTypes includedTypes) +303 Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapNode.GetNavigationChildren(NodeTypes includedTypes, NodeTypes includedHiddenTypes, Boolean trimmingEnabled, OrderingMethod ordering, AutomaticSortingMethod method, Boolean ascending, Int32 lcid) +244 Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.AddChildrenToControl(String parentId, PortalSiteMapNode node, Int32 depth, Int32 maxDepth) +155 Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.InitializeNavigationEditSort() +2511 Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e) +4129 System.Web.UI.Control.LoadRecursive() +94 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2935


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18010 


Usage Data Processing

$
0
0

I have a quick question about Usage Data Processing on sites in Sharepoint 2013. We have a site that is not showing usage data. It shows that there are 0 hits and 0 unique visitors daily and monthly from the beginning.

I noticed under the Monitoring in Central Administration, that the Microsoft SharePoint Foundation usage Data Import had a schedule running at 5 minutes. However, the Microsoft SharePoint Foundation Usage Data Processing schedule type was set to Disabled. 

Because the usage reports show the day previous, I'll have to wait until tomorrow to see if enabling the Data Processing worked. I wanted to get input and see if anyone thought this may be the issue.

I have already checked permissions for WSS_Admin_WPG and WSS_WPG on the LOGS folder.

The next step if that doesn't work, is to try creating a new login for SQL logging access to use SQL authentication instead of Windows. But hopefully that's not the issue, as I don't have access to the SQL server and will have to request someone to make the changes.

Sharepoint, AD FS and mulitple zones

$
0
0

Hi,

We use SPS 2013 in combination with AD FS 2.0. AD FS is configured to authenticate against a third party IP. We need a webapplication to be accessible to both these thrid party users AND internal AD users. I am trying to figure out what is the best way to accomplish this; either by extending the webapplication in SharePoint and setting different zones and different authentication mechanisms, or by using 1 webapp and configuring AD FS to authenticate not only to third party IP, but also to AD. In the latter case, can we configure a default provider in AD FS? So that when NO wdr is specified, is defaults to the external IP?

 I am wondering what configuration is better and why...

Saaffy


Cleaning Up Disk After Sharepoint 2013 Installation

$
0
0

Hi all,

I've installed Sharepoint 2013 and Project Server 2013 on a standalone server with success and got it running fine.

My only concern is that the space taken up by the sharepoint and project server installation is huge.

More precisely, it's eaten up a good 15-20GB of my hard disk space, and an estimated 2GB every week.

Is there any guide or some pointer on where and what to clean up to get back my hard disk space?


infinite loop on log in with ADFS

$
0
0

We have a new share point 2013 web app that we are trying to configure with ADFS using the detailed guide on tech net 

We have got every thing set up but when we log in we get the ADFS authentication dialogue which works and then redirects us to the /_trust/ url in sharepoint which sends us back to the authenticate.aspx page which sends us round the loop again.

Does any one have any idea what we missed during the set up that makes this loop happen? 

Setup e discovery on SharePoint 365 / Online

$
0
0

Hi I have been trying to find out how to set up correctly the permission so my e discovery can crawl the data from all the different site collections without any success, if any of you can help me I really appreciate it.


Login from a different domain

$
0
0

Hello everyone,

I have setup my Sharepoint 2013 farm and I would like to be able to login users from different domains of my network.

I was able to do this in Sharepoint 2007 without any specific action (I already did the correct configurations of the trust relantionshio from domain A to domain B, and I can validate this because in other applications [like SQL Server] I can login users from different domains).

Can you help me please ?

Best regards !

Luiz

How to Mount SharePoint Central Administrator to Point Another SQL Database Serve in VM

$
0
0
I friends,

I have A SharePoint Server 2013 (ip 1.1.1.1) and a SQL Database Server 2012(ip 2.2.2.2) These two servers are in Virtual Machine VM. I have created replica of these servers with ip (11.11.11.11 and 22.22.22.22). So there are two invironments now.

Production: 

SharePoint server (ip: 1.1.1.1)

SQL Database Server (ip: 2.2.2.2)

And Development( replica of Production)

 SharePoint server (ip: 11.11.11.11)

SQL Database Server (ip: 22.22.22.22)

I want to mount SharePoint server Central Administrator of Development to point (22.22.22.22) database. So that I can manage changes first in development and then in production. As of now I have tried to change database server ip address from Developmen's Central administrator but it does changes in both the database servers and things getting reflected in both the database server.

How can I make seperate instance of these serves so that Production and Development can be used seperately.

Regards

Gireesh Painuly

Design Manager fails to create a pre-installed look

$
0
0

SharePoint 2013 August 2013 CU Enterprise Edition.

Server 2012 (all software updates)

SQL 2012 SP1 Developer Edition

 

Farm Admin logged on and I upgraded the database with powershell and updated the look from 14 to 15 and I went to Design Manager or change the look, both error out.

I am taken to the Design Manager: Welcome screen.

/_layouts/15/DesignWelcomePage.aspx and clicked on the

Clicked on the hyperlink: Pick a pre-installed look

I selected different looks from (/_layouts/15/DesignGallery.aspx) and kept the "default" as I errored out each time!

Site Settings: Change the look

I choose one, any one it seems.  Lime for instance!

"Working on it"

/_layouts/15/start.aspx#//_layouts/15/designbuilder.aspx?masterUrl=%2F_catalogs%2Fmasterpage%

2Fseattle.master&themeUrl=%2F_catalogs%2Ftheme%2F15%2Fpalette026.spcolor&imageUrl=&fontSchemeUrl=%2F_catalogs%2Ftheme%2F15%2FSharePointPersonality.spfont

The server "thinks" for a minute and I get to "Try it out!"

I click the link

_layouts/15/designbuilder.aspx?masterUrl=%2F_catalogs%2Fmasterpage%2Fseattle.master&themeUrl=%2F_catalogs%2Ftheme%2F15%2Fpalette026.spcolor&imageUrl=&fontSchemeUrl=%2F_catalogs%2Ftheme%2F15%2FSharePointPersonality.spfont

This takes a few minutes to error out.

Working on it...

This shouldn't take long.

 

Then I get the error below:

Sorry, something went wrong

  • An unexpected error has occurred.

    ULS

    09/04/2013 13:23:31.07 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://SERVER-NAME:30761/_layouts/15/designbuilder.aspx?masterUrl=%2F_catalogs%2Fmasterpage%2Foslo.master&themeUrl=%2F_catalogs%2Ftheme%2F15%2Fpalette010.spcolor&imageUrl=%2F_layouts%2F15%2Fimages%2Fimage_bg010.jpg&fontSchemeUrl=%2F_catalogs%2Ftheme%2F15%2FSharePointPersonality.spfont) cfc23f9c-3968-a070-b2c8-172ce41ca01a
    09/04/2013 13:23:31.07 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|DOMAIN\FARM-USER, ClaimsCount=27 cfc23f9c-3968-a070-b2c8-172ce41ca01a
    09/04/2013 13:23:31.08 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Logging Correlation
    09/04/2013 13:23:31

09/04/2013 13:30:09.13 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation General 6u0k Unexpected ERROR: ManagedObjectFactory failed to GetObject. HR=0x80131530, ObjectType=3 cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.13 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Files abq2p High Cannot reinit BindFileInfo: 0x80131530. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.13 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Files aiv4x Medium Spent 121400 ms to add 250 byte file stream cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.13 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Files ajoil Medium Translated store error 0x80131530 to 0x00090005 cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.13 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation General 8kh7 High The URL '_catalogs/theme/Themed/CA77D76F/likefull.11x11x32-F47391E9.themedpng' is invalid.  It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.93 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 09/04/2013 13:30:09.13, Original Level: Verbose] SQL connection time: 1.13645728716918 for Data Source=SERVER-NAME;Initial Catalog=WSS_Content_SP2010;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][WSS_Content_SP2010] cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.93 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (SPSqlClient). Execution Time=804.946997453587 cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Files 9mpn High File exception: System.Threading.ThreadAbortException: Thread was being aborted.     at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps)     at Microsoft.SharePoint.Library.SPRequest.PutFile(String bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int64 cbFile, Object punkSPFileMgr, Object punkFFM, Int64 PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties, String bstrCheckinComment, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, SPFileSaveParams sfsp, SPFileInfo& pFileProps, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps)     at Microsoft.SharePoint.SPFileCollection.AddStreamOrBytesInternal(String urlOfFile, Stream file, Int64 fileSizeToSave, SPFileStreamManager spmgr, PutFileOpt fileOpt, String createdBy, String modifiedBy, Int32 createdByID, Int32 modifiedByID, DateTime timeCreated, DateTime timeLastModified, Object varProperties, String checkInComment, Stream formatMetadata, String lockIdMatch, String etagToMatch, SPLockType lockType, String lockId, TimeSpan lockTimeout, Boolean validateRequiredFields, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage, String& etagNew, Boolean& ignoredRequiredProps) cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation General 8nca Medium Application error when access /_layouts/15/designbuilder.aspx, Error=Request timed out. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Runtime tkau Unexpected System.Web.HttpException: Request timed out. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpException (0x80004005): Request timed out. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation General aat87 Monitorable  cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,2 agb9s,917 b4ly,3377 ak8dj,1331 b4ly,0 b4ly,0 b4ly,0 b4ly,954 b4ly,8669 b4ly,1102 b4ly,553 b4ly,392 b4ly,1153 b4ly,321 ak8dj,956 b4ly,0 b4ly,120937 fa43,0 fa44,0 tzku,0 tzkv,0 aek90,0 b4ly,0 b4ly,2553 b4ly,5765 agxkz,0 90hv,1588 b4ly,1223 b4ly,0 ak8dj,0 ak8dj,1 abnwk,11 ak8dj,0 abnwk,7 ajk3p,121745 fa43,0 fa44,0 tzku,0 tzkv,0 aek90,0 b4ly,0 ak8dj,0 b4ly,0 b4ly,271 b4ly,872 b4ly,469 ak8dj,744 b4ly,0 b4ly,13 ak8dj,3 ak8dj,18 ak8dj,3 ak8dj,8 ak8dj,314 agxkz,349 ak8dj,0 ak8dj,0 abnwk,5 ak8dj,0 abnwk,2 ajk3p,121382 fa43,5 fa44,0 tzku,1 tzkv,0 aek90,0 fa45,4 fa46,0 tzku,1 tzkv,0 aek90,0 btq8,808 b4ly,1 9mpn,2 8nca,0 tkau,0 ajlz0,1 aat87 cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.94 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Performance nask High An SPRequest object was not disposed before the end of this thread.  To avoid wasting system resources, dispose of this object or its parent (such as an SPSite or SPWeb) as soon as you are done using it.  This object will now be disposed.  Allocation Id: {F83B23D7-358C-4D89-AC47-313A2044C91B}  To determine where this object was allocated, set Microsoft.SharePoint.Administration.SPWebService.ContentService.CollectSPRequestAllocationCallStacks = true. cfc23f9c-3968-a070-b2c8-172ce41ca01a
09/04/2013 13:30:09.95 w3wp.exe (0x0E24) 0x1598 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (SPSqlClient). Execution Time=118958.956655106 cfc23f9c-3968-a070-b2c8-172ce41ca01a

SharePoint 2013 - Issue with multiple HTML data type fields in User Profile properties

$
0
0

Hi,

I am facing issue with SharePoint 2013 - User Profile properties. If I add multiple custom properties of type "HTML", then only the first one retains the value on the edit screen. The values do not surface for the remaining properties.

The same happens if I try to convert datatype of any OOTB User Profile property to HTML, and then only the first property of type "HTML" retains the value.

Please provider pointers.

Thanks,

Ashish Malhotra

Export-SPWeb and Import-SPWeb problem

$
0
0

Here's the error message:  Import-SPWeb : Cannot import site. The exported site is based on the template SPSREPORTCENTER#0 but the destination site is based on the template BICenterSite#0  [I'm 99% sure it said BICenterSite#0]

The background is:

  • I migrated a site from SharePoint 2007 to SharePoint 2010
  • I ran Export-SPWeb from the migrated SharePoint 2010 site
  • I ran Import-SPWeb from the previous export and got the error message above

In short, nothing that I can now create in SharePoint 2010 seems to match the exported "SPSREPORTCENTER#0" template.

So the question is, how can I export and then import to a different location?  Thanks.


Error reinstalling sp2013 - Cannot connect to database master at sql server

$
0
0

I had a sp2013 instance set up to play with and wanted to start the production environment fresh so I uninstalled SP, deleted all the databases from the sql server, etc.  Now when I try to reinstall, I get "cannot connect to database master at sql server" error, both through the configuration wizard and powershell.  The user I'm installing with does have admin/dbcreator rights on the sql server and the firewall is turned off both on the sql server and the sp server.  I'm at a loss.

Does OS Language Packs required before installing the SharePoint Language Packs

$
0
0

I am kind of confuse about this and could not find any anwser so far.

Are OS languages Pack required before installing the SharePoint Language Pack?

I tired to install Sharepoint LPs without OS language packs and its worked without any issue but i dont know if there is any dependency ,which i dont know , on the OS LPs. I dont know Spanish so cant test it. Your help always appreciated.If anything from MSFT article will fix my brain.

thanks

-wS


Thanks -WS SharePoint administrator, MCITP(SharePoint 2010)

Active Directory Import - Which contain should I choose when using LDAP filter

$
0
0
Greetings - I'm setting up my AD import using the new Active Directory Import. I have an LDAP filter that gives me everybody I want. My question is which container should I choose? Do I select all, or try and determine which actually contain the users I want? This is my filter that I've tested by running a search from AD root domain.com -  (&(objectCategory=Person)(objectClass=User)(mail=*)(|(memberof=CN=Seattle,OU=Distribution Groups,DC=domain,DC=com)(memberof=CN=Spokane,OU=Distribution Groups,DC=domain,DC=com))) Thanks!

Migration Path within SharePoint 2013 Admin Not Authorized

$
0
0

I am testing migration from SharePoint 2010 to 2013. I attached the 2010 content database to a separate site collection on an already deployed, working 2013 farm. The new site collection works in 2010, mostly (see below). Two issues, they may be related:

1. Only the site collection administrators have access to the 2010 (SP14) site collection that was migrated. The 2013 farm is running Claims with Kerberos Windows auth. On the new, separate application supporting the 2010 format content, I tried both NTLM and Kerberos authentication, but no luck. I set Claims Auth on the new application through PowerShell and didn't get any errors; Central Admin reports Claims Auth on the new application. It almost looks like the new application is not connected to the 2013 farm's User Profile Sync and Work Management Service Application, but I can't find anything obvious to check. Can someone point me in the right direction? Keep in mind that giving access to the separate application supporting the 2010 format is largely moot since only a subset of sites are bound to me migrated to 2013, and in other site collections/applications (see point no. 2 below). 

2. I am trying to build a migration path for several sites to move them from the SharePoint 2010 mode site collection and application to existing, already running 2013 mode site collections on the same farm (so the source would be the site collection/application described in point no. 1 above). I am not allowed to set a migration path as farm administrator, neither through the GUI, nor through PowerShell. If someone has any ideas of where to look beyond ULS and/or Windows logs, I'd much appreciate it. The logs do not have any other useful information besides similar to this error (where $source is Get-SPSite of the SharePoint 2010 mode app and $credentials is Get-Credential set to my SP_Administrator account: 

 

PS C:\Windows\system32> New-SPContentDeploymentPath -Name "TestSP14DeploymentPath" -SourceSPWebApplication $source.WebApplication -SourceSPSite $source -DestinationCentralAdministrationURL "http://<central-admin-url>:1432/" -DestinationSPWebApplication"http://<dest-app-url>/" -DestinationSPSite "http://<dest-app-url>/itimport/" -PathAccount $credentials -PathEnabled:$true

New-SPContentDeploymentPath : The request failed with HTTP status 401: Unauthorized.
At line:1 char:1
+ New-SPContentDeploymentPath -Name "TestSP14DeploymentPath" -SourceS ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidData: (Microsoft.Share...tDeploymentPath:SPCmdletNewContentDeploymentPath) [New-SPContentDeploymentPath], ArgumentException
    + FullyQualifiedErrorId : Microsoft.SharePoint.Publishing.Cmdlet.SPCmdletNewContentDeploymentPath


Any help would be appreciated. Thanks,

Radu


Radu P.

SharePoint 2013 UPS - Mysite Scheduled for Deletion after User moved to another OU

$
0
0

Hi there,

I have a SharePoint 2013 farm synching with AD.  Recently a user was moved to another OU, which then prompted sharepoint to schedule the mysite for deletion in 14 days. An email was generated to the user's manager advising of this and it granted the manager access to download any files.

The service desk then decided to move the user back into the original OU to try and rectify the issue.  

My question is: Now that the user is back in the original OU, and appearing in the UPS - how do I stop the mysite from being deleted?  Will it be deleted? How do I check to be 100% sure?

Thanks,

Mitch

Viewing all 21070 articles
Browse latest View live