-
Known Issues
- Sitecore Indexes Not Loading
- Unable to Create the Search Context Error
- Inactivity Timeout During Rebuild
- Problem Loading the Ninject Assembly
- Internal Server Error When Querying the REST Service
- Editing the Properties of a Coveo Search MVC Component Freezes the Page Editor in IE11
- Error or Document Not Found Page After Rebuilding the Indexes
- Problem Registering Search Page Events in Sitecore Analytics Database
- High Memory Usage While Rebuilding Indexes
- Root Element of a Crawler for a Coveo Index is Invalid
- HTML Version of Indexed Items Are Showing an Error Page
- NullReferenceException on Tracking.Current When Executing a Request for a Quick View
- Getting log4net Errors When Attempting to Browse Sitecore Pages
- Inserting an Example Search Page Results in No Renderings
- An Index Should Be Configured for Database Web Error Is Preventing the REST Service From Loading
- Cannot Insert the Value Null Into Column ID, Table Instance_hostname_core.dbo.properties. Column Does Not Allow Nulls.
- ERROR Error in FileWatcher Internal Buffer Overflow While Installing Coveo for Sitecore
- Exception While Handling Sitecore ContentSearch IndexingFinishedEvent, Index Was Not Found
- Failed to Reactivate the Organization Message in Command Center
- Handler Coveosearchendpoint Has a Bad Module Managedpipelinehandler in Its Module List
- Items in Different Languages Are Not Automatically Indexed or Updated When Language Fallback Is Enabled
- Missing Valid xDB License
- Opening the Experience Explorer Sets the Static Context to 'Master'
- Prebinding Isn't Applied to Elements Within a Searchbox Container
- Publishing Multi-Language Sitecore Items Leads to a Large Amount of Files Being Indexed
- Sitecore 8.2 With WFFM Refuses to Start After Installing Coveo for Sitecore
- Sitecore.ContentSearch.SitecoreItemCrawler.IsAncestorOf(Item item) error
- Solr - Error When Initializing Coveo When Side-by-Side With Solr Is Enabled
- The RouteData Must Contain an Item Named 'Controller' Error With SXA
- Sitecore SXA Throws Errors When Upgrading From Coveo for Sitecore 4.1 to Coveo for Sitecore 5
- Unexpected Token When Editing Page With SXA Components in Experience Editor
- Select the Associated Content Dialog Not Popping Up in SXA 1.8
- Could Not Find Property skipFirstTimeSetupCheck Error
- Send Analytics to Sitecore Component Not Working in Sitecore 9
- Two Instances of the Same Search Page Component Have Been Added on a Page But Only One is Initialized
- Dynamic Placeholders Not Displaying Allowed Renderings in SXA
- Failed to Configure the Organization Error When Trying to Switch Organization
- SXA Coveo Facet Value Suggestions Rendering Item Overwriting Hive Item at Installation
- Issues When the Core Database Is Disabled on Content Delivery Servers
- Content Database 'master' Not Found on a Content Delivery Server
- Sitecore 9 Content Delivery Instance Crashes at Index Initialization
- Coveo Analytics Events Are Not Logged in Sitecore 9.1 Analytics
- Compilation Error in Diagnostic Page in Sitecore 7.5 and 8.0
- Ajax Error 500 When Using Special Characters in a Query
- Dynamic Facet Range Not Showing When Returning From a No Result Query
- Master Index Old Item Versions Not Getting Deleted in Sitecore 9.1+
- Unhandled Exception After Installing Coveo for Sitecore on Sitecore 8.0 or 8.1 Instance
- The coveoProcessParsedRestResponse Pipeline Is Not Being Executed
- Unhandled Exception in Content Editor Prior to Coveo for Sitecore Activation
- Could Not Find Configuration Node Error on CD
- Components Aren’t Rendering Or Analytics HTTP Requests Are Failing Intermittently
- Ad-Blocker Filter Lists Blocking Coveo for Sitecore Calls
Compilation Error in Diagnostic Page in Sitecore 7.5 and 8.0
Sitecore 7.5 and 8.0 Coveo for Sitecore 5 (December 21, 2018) Coveo for Sitecore 5 (June 13, 2019)
Symptoms
When trying to access the Coveo Diagnostic Page, you get an error like the following:
Server Error in '/' Application.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS1061: 'Coveo.SearchProvider.Applications.Admin.SecurityDetails.SecurityProviderDetails' doesn't contain a definition for 'IsExpandedPermissionsProvider' and no extension method 'IsExpandedPermissionsProvider' accepting a first argument of type 'Coveo.SearchProvider.Applications.Admin.SecurityDetails.SecurityProviderDetails' could be found (are you missing a using directive or an assembly reference?)
Source Error:
Line 115: <td><%# Item.SecurityProviderName %></td>
Line 116: <td>
Line 117: <%# Item.IsExpandedPermissionsProvider ? "Yes." : "No." %>
Line 118: <asp:Label Visible="<%# Item.ShouldUpdateToExpanded %>" runat="server">
Line 119: This instance is still using Sitecore 2 Security Provider. To upgrade, click
Cause
When correcting a bug in the December 21, 2018 version of Coveo for Sitecore, code in the Sitecore 7.5 and Sitecore 8.0 specific CoveoDiagnosticPage.aspx
page was not properly removed.
Resolution
The issue is resolved in the June 18, 2019 release of Coveo for Sitecore. You can fix the problem by upgrading to this release.
Workaround
You can delete the excess code from the CoveoDiagnosticPage.aspx
page.
-
Open the
<SITECORE_INSTANCE_ROOT>\Website\sitecore modules\Web\Coveo\Admin\CoveoDiagnosticPage.aspx
file in a text editor. -
Locate and delete the code block below.
<asp:PlaceHolder ID="SecurityProviderSection" runat="server"> <asp:Repeater ID="SecurityProvidersDetailsSection" ItemType="Coveo.SearchProvider.Applications.Admin.SecurityDetails.SecurityProviderDetails" runat="server"> <HeaderTemplate> ++++ <table cellspacing="0" class="coveo-states published-items"> <thead> <tr> <th>Security Provider Name</th> <th>Is Expanded Permissions Provider</th> <th>State</th> </tr> </thead> <tbody> </HeaderTemplate> <ItemTemplate> <tr> <td><%# Item.SecurityProviderName %></td> <td> <%# Item.IsExpandedPermissionsProvider ? "Yes." : "No." %> <asp:Label Visible="<%# Item.ShouldUpdateToExpanded %>" runat="server"> This instance is still using Sitecore 2 Security Provider. To upgrade, click <a href="https://developers.coveo.com/x/nYQkAg" runat="server">here</a>. </asp:Label> </td> <td><%# Item.FetchingStatus %></td> </tr> </ItemTemplate> <FooterTemplate> </tbody> </table> ++++ </FooterTemplate> </asp:Repeater> </asp:PlaceHolder> <asp:Label ID="SecurityProviderErrorMessage" Visible="false" runat="server"/>
-
Save your changes.
What's Next for Me?