Domanda

Continuo a ottenere:

Scusa, qualcosa è andato storto.

Correlation ID: 00000000-0000-0000-0000-000000000000 
.

nel mio contenuto Cerca WebPart. Il contenuto Search WebPart è configurato per ottenere risultati limitati da un tipo di contenuto personalizzato (contenttype di pagina personalizzato) e un modello di visualizzazione personalizzato (fa alcuni JavaScript per il rendering delle immagini). A volte il correlationid 000 .. mostra, e talvolta no. Quando premo Strg+F5 funziona la maggior parte del tempo. Ho anche visto Questo articolo e provato il seguente codice:

$myfarm = Get-SPFarm
$myfarm.XsltTransformTimeOut
$myfarm.XsltTransformTimeOut = 15
$myfarm.Update()
.

Anche l'ho provato con 15 secondi ma non ho visto alcun effetto. Qualcuno conosce il motivo per cui ciò accade o può darmi una solutizione per questo errore?

Edit_1

Ecco il rapporto. Non riuscivo a trovare state: Degrade ma ho fatto un indice-reset e un crawl completo comunque perché è solo una macchina di sviluppo e mabey aiuta. E testandolo per un po ', sono arrivato alla decisione che avrebbe potuto aiutare. Non ho ricevuto il mio dispiacere qualcosa è andato il dialogo sbagliato nell'ultima ora. Se non lo ricevo di nuovo nel prossimo mese, accelerò la tua risposta. Grazie per la vostra risposta.

Report:

> Get-SPEnterpriseSearchServiceApplication | Get-SPEnter
priseSearchStatus -Text
Name      : IndexComponent1
State     : Active
Primary   : True
Partition : 0
Host      : sepp0019

Name      : Cell:IndexComponent1-SP18556ba382adI.0.0
State     : Active
Primary   : True
Partition : 0

Name  : Partition:0
State : Active

Name  : AdminComponent1
State : Active
Host  : sepp0019

Name  : QueryProcessingComponent1
State : Active
Host  : sepp0019

Name  : ContentProcessingComponent1
State : Active
Host  : sepp0019

Name  : AnalyticsProcessingComponent1
State : Active
Host  : sepp0019

Name  : CrawlComponent0
State : Active
Host  : SEPP0019
.

Edit_2

Oggi ho finito gli aggiornamenti che hai suggerito. Non sono sicuro che se fosse aiutato, ma sembra funzionare ora. Ti farò sapere quando sono sicuro che il problema non accada di nuovo. Grazie mille per le risposte immediate.

È stato utile?

Soluzione

  1. Make sure that you have installed the current software update for SharePoint.

  2. Check your current timeout settings, simply use the following PowerShell:

 $myfarm = Get-SPFarm> 
 $myfarm.XsltTransformTimeOut
 $myfarm.XsltTransformTimeOut = 5
 $myfarm.Update()

If you’re experiencing the above problem, you probably got a 1 back from the above command indicating that the timeout is currently set to 1 second. To set it to a more reasonable value (we choose the original 5 seconds) just do this (assuming you set the $myfarm object using the above powershell):

http://social.technet.microsoft.com/Forums/sharepoint/en-US/f7b8a70e-5663-4532-9327-3c15da58cfca/correlation-id-00000000000000000000000000000000-error-in-content-search-sometimes?forum=sharepointadmin

EDIT

goto powershell and do the following:

Get-SPEnterpriseSearchServiceApplication | Get-SPEnterpriseSearchStatus -Text

http://technet.microsoft.com/en-us/library/jj219672.aspx

can you post back within your question the result? do you see state : Degraded within the report? if so reset the search index:

To reset the content index

1.Verify that the user account that is performing this procedure is a service application administrator for the Search service application for which you want to reset the content index.

2.On the SharePoint Central Administration home page, in the Application Management section, click Manage service applications.

3.On the Manage Search Applications page, click the Search service application for which you want to reset the content index.

4.On the Search Service Application: Search Administration page, in the Quick Launch, in the Crawling section, click Index Reset.

5.On the Search Service Application: Index Reset page, verify that the Deactivate search alerts during reset check box is checked, and then click Reset Now.

6.In the confirmation dialog box that appears, click OK to confirm the content index reset.

The Search Service Application: Search Administration page opens and the System Status is displayed.

7.Perform a full crawl.

enter image description here

http://technet.microsoft.com/en-us/library/ff608191(v=office.14).aspx

EDIT

I need to know if you have updated sharepoint since you downloaded it? as this sounds like a bug that is fixed with the current updates released:

update your server with the following updates that should resolve this issue as the above method should of worked:

http://support.microsoft.com/kb/2767999

and then do this:

http://support.microsoft.com/default.aspx?scid=kb;EN-US;2726992

You must do the first link first before you do the second as the second update is reliant on the first update!

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top