Skip to main content

Posts

Showing posts from September, 2018

Sitecore 9 : Error in controller rendering throws Error rendering controller:the current route url is: '{*pathinfo}'. this is the default sitecore route which is set up in the 'initializeroutes' processor of the 'initialize' pipeline sitecore 9

Hello Guyz, Believe me but I just had the nightmarish situation where I got trapped in this controller rendering issue where it kept on giving me below error Error rendering controller: the current route url is: '{*pathinfo}'. this is the default Sitecore route which is set up in the 'initializeroutes' processor of the 'initialize' pipeline There mainly two reasons for this exception Controller rendering you have used is having either wrong namespace, wrong controller name or wrong assembly name. There is something wrong with System.Web.Mvc.dll you should first observe your controller rendering configuration, see if namespace or controller name or assembly name are correctly given? this is common issue when we copy and paste the path and it could contain spaces or aeesmbly name could be wrong, if everything looks good there, read further I tried everything like changing the name of controller, deleting the physical controller and creating It with d

Sitecore 9: System.MissingMethodException: Method not found: 'System.String Sitecore.ContentSearch.Abstractions.ISettings.

Sitecore® 9.0 Platform Essentials for Developers eLearning Lab Module Error I was recently doing the Sitecore® 9.0 Platform Essentials for Developers eLearning Lab Modules and in last modules I started getting the below error System.MissingMethodException: Method not found: 'System.String Sitecore.ContentSearch.Abstractions.ISettings. Out of clue because I did everything as per the guide and end up in error, I figured out from the exception that it has to do with some DLL which is not finding the method the code is trying to reference. So I backtrack the module and found out that there were two nuget packages were installed and one of them was Sitecore.ContentSearch.dll , So when you publish the site this DLL got overwritten with the existing which was available with existing sitecore installation In your WWWROOOT I had a back up of the sitecore installation folder from WWWROOT and I took the DLL from that and put replaced it in the WWWROOT folder and to make sure it works n