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

Edit page button not working in publishing site

$
0
0

On certain pages in a publishing site the edit button in the top-right-hand corner is displayed, along with the Page and Publish tabs in the ribbon (although Browse is the active tab) for published pages.

When I click either the quick-access link on the right, or click the Edit button in the ribbon, nothing happens.

When we manually check out the page, and then click the Edit button or link, the page goes into edit mode.

What is happening here and how can I diagnose what is going wrong?

In the JavaScript error console, I am getting the message "'Pub' is undefined". Searching the web on this, SharePoint 2010 examples suggest a missing delegate control, "<SharePoint:DelegateControl runat="server" ControlId="PublishingConsole" Id="PublishingConsoleDelegate">".  I have checked our (custom) master page and this control does not exist.

Thing is, some pages work just fine and have no problems so I am not sure if it is this or not?

Thanks for any help,
Richard

 

Full crawl not completed for content source it completed only after 30 seconds.

$
0
0

I configured enterprise search in a sharepoint 2013 farm. 

and it has one internet faced web application which running with https://

when i run full crawl for a web application , FUll crawl not completed and it finished after 30 seconds. 

and in search server where search components deployed  , below errors i found :

An operation failed because the following certificate has validation errors:

Subject Name: CN=www.xxxx.xxxx, O=Xxxxxxx, L=Riyadh, S=Riyadh, C=SA

Issuer Name: CN=DigiCert SHA2 Secure Server CA, O=DigiCert Inc, C=US

Thumbprint:xxxx

 Errors:

 PartialChain: A certificate chain could not be built to a trusted root authority.

RevocationStatusUnknown: The revocation function was unable to check revocation for the certificate.

OfflineRevocation: The revocation function was unable to check revocation because the revocation server was offline.

2<sup>nd</sup> error:

The start address https://www.xxxx.xxxx cannot be crawled.

Context: Application 'Search_Service_Application_Xxxxportal', Catalog 'Portal_Content'

Details:

                The SharePoint item being crawled returned an error when requesting data from the web service.   (0x80042616)

The start address https://www.xxxx.xxxx cannot be crawled.

Context: Application 'Search_Service_Application_Xxxxportal', Catalog 'Portal_Content'

Details:

                An unrecognized HTTP response was received when attempting to crawl this item. Verify whether the item can be accessed using your browser.   (0x80041204)


adil

Connection refused - App management url

$
0
0

Hi folks,
I have configured app management service in farm level (sp2013), but while i executing through Vs2013 getting error like "Connection refused".

After read some aricle i have enabled this future "Enable-SPFeature e374875e-06b6-11e0-b0fa-57f5dfd72085 –url http://sitename.domain.com:2011/sites/app"
1.given full permission AppDB & Subscription DB.
2. added app domain url name in browser settings.
3. added url comparability settings & trusted sites.
4.added below script
$(document).ready(function () {
SP.SOD.executeFunc('SP.js', 'SP.ClientContext', function () { sharepointReady(); });
});

5.External script debugger in internet explorer

Still I am getting same issue in browser but i didn't get any error in visual studio.

please give solution

User Profile Service Application - Feed Cache Repopulation job: Unexpected exception in FeedCacheService.IsRepopulationNeeded

$
0
0

The timer job User Profile Service Application - Feed Cache Repopulation job fails two/three times a day but succeeds mostly

The timer job runs every 5 minutes. The error is also logged in the Event Viewer, Event ID 6398.Description: The Execute method of job definition Microsoft.Office.Server.UserProfiles.LMTRepopulationJob

The error appears with two kind of messages:

  • Unexpected exception in FeedCacheService.IsRepopulationNeeded: Connection to the server terminated,check if the cache host(s) is running.
  • Unexpected exception in FeedCacheService.IsRepopulationNeeded: Cache cluster is down, restart the cache cluster and Retry,Failed timer jobs occur one or more times in a day, expected that timer job succeeds all the time.
The issue is present since the configuration of the SharePoint Farms and appears atleast twice every day in all Sharepoint 2013 farms.

SQL insert in content database causes my tempdb log file to increase to 14 GB. Thoughts?

$
0
0

This sql insert starts and runs for 48 hours and stops fills up space on my tempdb log file.  I don't know how long it would have run if we let it.  Maybe 15 GB.  Maybe forever.   The last time it was 14 GB and growing when it shut down my site.  (let's treat the running out of space issue separately.  That's being addressed separately) 

Judging by the reference to IncrementalSearchScope, it's related to search.  But the entire content database is only 12 GB and incremental crawls take about 3 minutes.  Also, this database is primarily read only.  There's very little being updated throughout the day.

Thoughts?

Thanks,

INSERT INTO #ExportObjects(
        Id
        Type
        Level
        DirName
        LeafName
        ParentId
        ParentWebId
        FullUrl
        EventTime
        IsSelected
        IsIncremental)
    SELECT
        NEWID()

        ud.DirName
        ud.LeafName
        ud.tp_ListId
        ud.WebId
        CASE
            WHEN (DATALENGTH(ud.DirName) = 0) THEN ud.LeafName
            WHEN (DATALENGTH(ud.LeafName) = 0) THEN ud.DirName
            ELSE ud.DirName + N'/' + ud.LeafName
        END
        ud.EventTime
        ud.IsSelected

    FROM
    (
        SELECT DISTINCT
            Docs.DirName
            Docs.LeafName
            UserData.tp_ListId
            ev.EventTime
            ev.WebId
            e.IsSelected
        FROM
            #IncrementalSearchScope e
        CROSS APPLY
            TVF_EventCache_NoLock_SiteGTIdLEQId(@SiteIde.ChangeNumber@ChangeNumberEnd) AS ev
        CROSS APPLY
            TVF_UserData_NoLock_ListItem(@SiteIdev.ListIdev.ItemId) AS UserData
        CROSS APPLY
            TVF_Docs_PId_DId(@SiteIdUserData.tp_ParentIdUserData.tp_DocId) AS Docs
        WHERE
            (ev.ObjectType & @ObjectTypeMask) != 0 AND
            (ev.EventType & @EventTypeMask) != 0 AND
            ev.WebId = e.Id AND
            e.Type = 1 AND
            e.IncludeDescendants > 0 AND
            ev.EventTime >= e.ChangeTime AND
            ev.EventTime <= @ChangeTimeEnd AND
            UserData.tp_Level = Docs.Level AND
            ((@IsMajorFileOnly = 1 AND UserData.tp_Level=1) OR
             (@IsMajorFileOnly = 0 AND UserData.tp_Level IN
                 (SELECT TOP 1
                      d2.tp_Level
                  FROM
                      TVF_UserData_NoLock_Pid_Did(@SiteIdUserData.tp_ParentIdUserData.tp_DocId) AS d2
                  WHERE
                      d2.tp_Level <> 255))) AND
            ev.EventTime IN (
                SELECT TOP 1
                    ev2.EventTime
                FROM
                    TVF_EventCache_NoLock_SiteGTIdLEQId(@SiteIde.ChangeNumber@ChangeNumberEnd) AS ev2
                WHERE
                    ev2.WebId = e.Id AND
                    ev2.ListId = ev.ListId AND
                    ev2.ItemId = ev.ItemId AND
                    ev2.EventTime >= e.ChangeTime AND
                    ev2.EventTime <= @ChangeTimeEnd AND
                    (ev2.ObjectType & @ObjectTypeMask) != 0 AND
                    (ev2.EventType & @EventTypeMask) != 0
                ORDER BY ev2.EventTime DESC) AND
            NOT EXISTS (
                SELECT TOP 1

                FROM
                    #ExportObjects e
                WHERE
                    (e.Id = ev.WebId OR e.Id = ev.ListId) AND
                    e.IsDeleted = 1)) as ud     


Nate

Security groups showing 0 total members

$
0
0

Hello,

We have SharePoint 2013 SP1 (15.0.4571.1502) on-prem, and are using AD Import to sync users and groups.  I have created a couple audiences and I'm trying to add a rule that will base my audience on AD group membership.  On the 'Select Distribution Group or Distribution List' pop-up all my groups (global and universal) show 0 Total Members.  Thus I can add the group(s) to a rule on an audience but there are zero total members.

Any suggestions how to resolve this membership issue?

Many thanks!
Matt


Site collection admins removed on all MySites after patching SharePoint

$
0
0

We just applied SP1 and the Oct 2015 CU to our production farm, and noticed that all users were removed from the site collection administrators group on the MySites. All non-MySites, such as team sites, are fine. There is nothing in the ULS logs or upgrade logs on why this happened. it did not happen in our testing environments. Has anyone seen this issue before? 

I wrote a script to just add the users back into the site collection admin group, but the owners want an explanation as to why this happened.

Alternate access mapping issue

$
0
0

Server Farm environment is single server and SharePoint version is 2013 Sp1.

I have created a web application under which i have 2 site collection. One is root site and second is PWA site (which is project server 2013). My users are going to access only PWA site. DNS entry has been made for the site.

URL :Http://servername:90/PWA  it is accessible with in the server. web application is hosted on port 90.

Now i have completed AAM for the site Http://servername:90/PWA

And when i am trying to access it with in server it is giving me error that sorry Site has not been shared with you.

Though i am accessing it through service account which is having correct privileges.

Host name bindings is for Correct website and port 90 with in IIS.

Now there is two issues

1when i am trying to access the URL it says sorry Site has not been shared with you (which is not correct)

2 When went through the Log i found that internally Url(Http://hostname.com/PWA)

getting redirected to Port 80 http://hostname.com:80/PWA which is not correct as site is hosted in port 90.

Images of AAM are attached.


kirtesh


About Me not working for some Users

$
0
0
Some of our users get a 404 when they click their About Me link.  Would this be something that would be affected by AD changes, or is this all strictly Sharepoint related issues.

This site hasn't been shared with you for SAML authentication users in sharepoint 2013

$
0
0

Hi

I have configured SAML Authentication with ADFS 2.0 using the below Microsoft link in SharePoint 2013 Server.

https://technet.microsoft.com/en-us/library/hh305235.aspx

Now I am getting the follow error message” Sorry, this site hasn't been shared with you” for the SAML authentication user account who is member of Site collection administrator.

Kindly help me to on this.

But the SAML user can able to login to the site if I add all users in web application user policy which is not correct way to do this.

Below image illustrate the error message

 

Thanks in Advance

Ramu

HTTPS SharePoint unable to play Video Files

$
0
0

My on-premise SharePoint 2013 site is set up secure (https://sitename.com). A video file can be uploaded, downloaded, etc. However, it cannot play in browser.

IE produces the following error in the developer panel:

SEC7111: HTTPS security is compromised by http://go.microsoft.com/fwlink/?LinkId=108181
videoplayerpage.aspx

Chrome produces the same error:

Mixed Content: The page at 'https://insite2.norc.org/sites/lms/LMS%20Training%20Videos/Forms/Video/vide…2D%20NORC%20%2D%20Tuesday%2C%20December%2015%2C%202015%2012%2E42%2E30%20PM' was loaded over HTTPS, but requested an insecure image 'http://go.microsoft.com/fwlink/?LinkId=108181'. This content should also be served over HTTPS.

Is there a server configuration to push the player request to use https?

SharePoint 2013 error advising that “an error occurred while running detection” when applying Sept 2015 CU

$
0
0

Hi,

A WFE/Application server in one of our 2 SharePoint farms gives an error advising that “an error occurred while running detection” when applying any CU. How do we fix the detection error to be able to apply the new “Uber” Sept 2015 CU to leverage the new hybrid search functionalities without having to rebuild the server?

For further background, the detection error occurs when either running the CU as an administrator directly or while using the Patchit script.

It not only occurs on the CU we were trying to run, the Sept 2015 “Uber” CU, but also when we try to rerun SP1 or our current build version CU, Dec 2014, to try to get a consistent patch baseline.

Running PSCONFIGUI.EXE as administrator will not detect the upgrade needed.

Checking the opatchinstall.log file gives a sys.proc.result value of 17044 error

The event viewer shows no errors in the Windows or Microsoft logs that would relate to the CU error. Nothing shows up in the ULS logs either.

We have installed the SP1 language packs and they upgraded successfully when PSCONFIGUI was run.

We are showing that we are on the Dec 2014 CU for SharePoint server:

Configuration database version:

15.0.4675.1000

PS C:\Users\sp_install> (get-spfarm).buildversion

Major  Minor  Build  Revision

-----  -----  -----  --------

15     0      4675   1000

However, when I look in the Manage Patch Status, several of the products show a patch status of SP1 - 15.0.4571.1502

We also show 2 guid folders in c:\programdata\Microsoft\sharepoint\config. One has the expected config.ini file and xml files.  The other has over 800 PERSISTEDFILE files that update when SPCONFIGUI is run, even if the entire folder is deleted.

Also, the icons in the taskbar for Central Admin, SharePoint 2013 Management Shell and Sharepoint 2013 Products Configuration wizard show as blank pages.

We have been running windows security updates to stay current on security and I fear that a SharePoint server update applied without PSConfig being run after it installed and that has corrupted a portion of the SharePoint install.

We have not tried the following:

  1. Running Get-SPProduct Local and the running the CU
  2. Running the CU with the Package.Bypass.Detection.Check=1 switch
  3. Running ROIScan.vbs
  4. Running OPUtil.vbs
  5. Running a repair of any SharePoint Products from programs and features.

Below I have provided the results of Stefan Gossner’s Script script which retrieves the version information for the patch baseline from the registry and allows to identify components which are below the re-released Service Pack 1 base line:

Products and Language Packs

-------------------------------------------

DisplayName    : Microsoft SharePoint Server 2013

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Arabic العربية

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Bulgarian/български

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Catalan/Català

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Czech/čeština

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Danish/dansk

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - German/Deutsch

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Greek/Ελληνικά

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - English

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Spanish/Español

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Estonian/Eesti

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Basque/Euskara

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Finnish/suomi

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - French/Français

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Galician/Galego

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Hebrew עברית

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Hindi/हिंदी

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Croatian/Hrvatski

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Hungarian/magyar

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Indonesian/Bahasa Indonesia

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Italian/Italiano

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Japanese/日本語

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Kazakh/Қазақ үлгісі

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Korean/한국어

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Lithuanian/Lietuvių k.

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Latvian/latviski

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Malay/Bahasa Malaysia

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Norwegian/norsk

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Dutch/Nederlands

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Polish/Polski

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Portuguese/Português (Brasil)

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Portuguese/Português

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Romanian/Română

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Russian/русский

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Slovak/Slovenčina

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Slovenian/slovenščina

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Serbian/српски

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Serbian/srpski

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Swedish/svenska

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Thai/ไทย

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Turkish/Türkçe

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Ukrainian/Українська

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint 2013 - Vietnamese/Tiếng Việt

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Chinese (PRC)/中文(简体)

DisplayVersion : 15.0.4571.1502

DisplayName    : Language Pack for SharePoint and Project Server 2013 - Chinese (Taiwan)/中文 (繁體)

DisplayVersion : 15.0.4571.1502


How to update SharePoint Server 2013 Standard Edition?

$
0
0

Hi,

I should install and update to latest version Sharepoint Standard Edition. The install package for both is the same and the difference is made by the serial number you type in, in the beginning of the installation.

All of the later Cumulative Updates and Uber Packages listed here are for Sharepoint Enterprise and Sharepoint Foundation. Most of the blogs also list only updates for Enterprise and Foundation like here and here. I couldn't find any CUs or UBER Packages for the Standard Edition.

I tried running both the Foundation and Enterprise UBER Packages on my SharePoint Standard Server and they say that the expected version of the product is not found.

How do you update SharePoint 2013 Standard Edition to the latest version?

Answers will be greatly appreciated.

George


Is this expected from SPWebApplication.PeoplePickerProperties command?

$
0
0

Hi all

We have two way trust between two domains DomainBlue and DOmainRed. When I run this command - each of the domains (Blue and Red marked with appropriate color gets listed twice). Is this normal? Or there is a way to fix it so each domain appears only once?

Thanks so much.

Migrating SharePoint2013 and SQL Server to new Windows Server 2012 R2

$
0
0

Hi Team,

I want to migrate SharePoint 2013 from one location to another. its includes SQL, AD account and all other settings. Could you please guide me what is the best practice to do the migration SharePoint2013 and SQL Server.

I am using 3-tier Architecture environment.(SQL, App-server and Front Server.)

Best regards,

Rathan.



Deadlocks on Reporting Service Database due to unsync data sources.

$
0
0

We have a SharePoint farm with 3 web front end servers and 2 app servers. DBs are setup in AlwaysON.

Recently we had an issue that SharePoint SSRS Reports started to behave abnormally - slow in performance and sometimes no result at all. After looking at log files for reporting services we found that reports were getting timed out due and it was pointing towards DB server with Disk issue or connection issue "An error occurred within the report server database. This may be due to a connection failure, timeout or low disk condition within the database". We found the problem was locking on Reporting Service Database. And the reason for that is explained here:

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

We fortunately found the data source and just renamed it so that it get synced. It immediately solve the issue. But we are wondering why the sync fails for data sources at first place and what is the permanent solution. The article above is just a work around.

I found another article which talks about the SSRS cache cleanup issue. Not sure if that is the case here. The solution there suggested is to apply CU 11 for SQL 2012 SP1.

It will be great if someone can help us with permanent solution. Should I go for CU 11 or first SQL SP 2 and then CU 4 as explained here: https://support.microsoft.com/en-us/kb/2972463

Note: We have SQL Server 2012 SP1 CU 6.

Regards,

Kunal Abrol

 

Calendar list DispForm is showing HTML tags in value for Lookup and multiselect columns

$
0
0

We have migrated calendar list from MOSS 2007 to SP2010 to SP2013 using content DB attach method.

After the migartion calendar list is showing HTML tags in value for Lookup and multiselect columns as shown here however the text fields are showing values fine. Creating new DispForm.aspx or creating new lookup columns and mapping to correct list in 2013 did not work. And one more similar issue post is for view and not for single item here.

Also tried remapping the lookup columns using PowerShell from http://www.ilikesharepoint.de/2013/12/sharepoint-repair-lookup-columns-which-are-not-connected-to-a-list/

Please suggest if I'm missing something. Thanks


Ulhas Morbale http://mysharepointlab.blogspot.in/

One app server loading a blank page when trying to access sites

$
0
0

Hello,

We have a SharePoint 2013 environment with two app servers that are load balanced using NLB. One app server consistently loads blank SharePoint pages every few days. Doing an IIS reset or recycling the app pool fixes the issue. But I am wondering if there is a more permanent fix for this.

thanks,

Sherazad.


Sherazad

Configuring Sharepoint Server 2013 connect to SQL server using child Active Directory domain user

$
0
0

I'm having a problem with the initial configuration of SharePoint.

I'm unable to connect to my SQL user account which is integrated in a child Active Directory domain, like this format: "ad.domain.tld". The AD account have been linked to the SQL instance as a login and the SQL server is configured for Mixed authentication, both SQL and AD login types. SharePoint server 2013 and SQL server 2014 is installed on the same Windows 2012R2 server.

I've verified that this account that I'm trying to integrate with SharePoint can login to the SQL instance and the login has been granted "Sysadmin" server role rights.

My question is whether the SharePoint configuration Wizard is not able to parse a childdomain AD login, i am getting various errors while trying to associate the login with SharePoint:

enter image description here

enter image description here

What can I do to resolve this other than using a local windows account on the SharePoint server?

Word automation service doesn't work, how to configure properly

$
0
0
Word automation service - how to configure?It was turned on after install of SP farm.Enabled for site collection. But when i try open RTF document - it just offer me to download it, instead convert to docxand open in word? Do i miss something?
Viewing all 21070 articles
Browse latest View live


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