Posts

Showing posts from 2017

Info : Nuget : NuGet Good Libraries

http://nugetmusthaves.com/Article

Info : Sitecore : Instagram integration Without authentication

https://stackoverflow.com/questions/17373886/how-can-i-get-a-users-media-from-instagram-without-authenticating-as-a-user

Sitecore : Install mongoDB as service

https://docs.mongodb.com/master/tutorial/install-mongodb-on-windows/

Issue : VS Project Build : metadata file dll could not be found

I just had the same problem. Visual Studio isn't building the project that's being referenced. Right click on the solution and click Properties. Click Configuration Properties -> Configuration on the left. Make sure the check box under "Build" for the project it can't find is checked. If it is already checked, uncheck, hit apply and check the boxes again. https://stackoverflow.com/questions/1421862/metadata-file-dll-could-not-be-found

Info : DB : Split database full backup to multiple files

http://www.sqlideas.com/2011/08/split-database-full-backup-to-mupltiple.html

Sitecore : Custom 500 error Page in Sitecore Multi Site

https://www.akshaysura.com/2017/09/07/sitecore-multi-site-custom-500-error-page/

Sitecore : setting up sitecore helix solution from scratch

http://sitecoresolution.blogspot.in/2017/04/setting-up-sitecore-helix-solution-from-scratch.html

Sitecore : Setting up Sitecore MVC project from Scratch

https://www.youtube.com/watch?v=cskz2oZYCYs

Sitecore : Using Federated Experience Manager (FXM)

Image
Prerequisite: Public facing non Sitecore website URL. Open Federated Experience Manager. Click Add External Website button. Enter name & website(Public facing website URL). Click Save. Copy the script in the Head Tag of non Sitecore website, once you add that you will get the message as “Javascript Beacon found  on external website” Open saved website in Experience Editor by clicking “Open in Experience Editor” button. Navigate to a page to which you wish to add content, and create a page filter for it From the toolbar click “Add Placeholder”. Next click on the element you wish to replace and click the replace option. This will bring up the placeholder  dialog. The dialog will ask for a name and a parent node for the placeholder item. O pen up the Federated Experience Manger node under the Marketing Center we can see how Sitecore has persisted what we’ve done in the  Experience Editor.

Sitecore : How to configure Sitecore Synonym Search with Lucene?

Image
The pocess of breaking up text into tokens is called tokenization. Analyzers are nothing but the components which controls Tokenization. Sitecore’s Content Search API comes configured with the standard analyzer by default, however it’s possible to configure a synonym analyzer if you need this functionality (i.e. searching for a synonym of a word in content finds that result). Sitecore ships with its own implementation of a synonym analyzer:  Sitecore.ContentSearch.LuceneProvider.Analyzers.SynonymAnalyzer . The key to the synonym analyzer is providing it a list of synonyms, which need to be set in your own custom XML file. The reason for this is that Sitecore includes its own synonym engine implementation that uses XML files to store the synonym mappings. Configuring the Synonym Analyzer In  ContentSearch.Lucene.DefaultIndexConfiguration.config  , change the inner  defaultAnalyzer  parameter reference from the standard analyzer to the s...