Skip to main content

Posts

Showing posts from 2018

Sitecore Utilities

Sitecore Marketplace Caching Manager Cache Tuner Sitemap XML Sitecore Cache Admin Sitecore PowerShell Extensions Shared Module Sitecore Sidekick – Content Migrator Sitecore History Viewer Clear Cache Individually Multisite Manager ( moving site definition to database ) GitHub Sitecore Instance Manager(SIM) StandaloneShowConfig awesome-sitecore   SitecoreSidekick XConnect Tutorial Sitecore media package generator Free Templates Free CSS Developer Quicks Unlock Sitecore Admin Account Sitecore Admin Pages Cheat Sheet Uninstalling a Sitecore instance installed with SIA Installing and Uninstalling Solr with Powershell Tools DebugDiag Troubleshooting Collecting memory snapshots during high CPU and analyzing them

Create Registry PowerShell script

$regkeypath= "HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319" $regValueName= "SchUseStrongCrypto" $valueExists = (Get-Item $regKeyPath -EA Ignore).Property -contains $regValueName If ($valueExists -eq $true ){ Write-Host $regkeypath" Property Exist" } Else { New-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord Write-Host "Property has been created" } $regkeypath= "HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319" $valueExists = (Get-Item $regKeyPath -EA Ignore).Property -contains $regValueName If ($valueExists -eq $true ){ Write-Host $regkeypath" Property Exist" } Else { New-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type 'DWord' Write-Host "Property has been created" }

Sitecore Personalization

Setting up Sitecore's Geolocation Lookup Services in a Production Environment Sitecore's IP Geolocation Service Videos Sitecore 8 Personalization Using Goals and Engagement Value Creating an Engagement Plan in Sitecore

URL Rewrite :: HTTP redirection

Download the relevant URL Rewrite module from this URL https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-the-url-rewrite-module Add a new website in IIS Add bindings and enter URL in host name field from where we want user to redirect. Target URL will be added in rules in web.config file Right click on website , add a web.config file in that folder directory and then add below redirect rule in file <?xml version="1.0" encoding="UTF-8"?> <configuration>   <system.webServer>     <rewrite>       <rules>         <rule name="Redirect www" stopProcessing="true">           <match url="(.*)"/>           <action type="Redirect" url="http://www.mysite.com/" redirectType="Permanent" appendQueryString="false"/>         </rule>       </rules>     </re...

Troubleshoot Sitecore

Sitecore Troubleshooting Demos Sitecore Troubleshooting Path Sitecore - High Memory and CPU usage after upgrading to Sitecore 8.1-update-3 ItemAxes and Database Rules Common mistakes when programming with Sitecore pt1 Sitecore index based search Sitecore restart Automatically on Sitecore.NET 7.2 (rev. 140526) Performance tuning CMS Performance Tuning Guide Performance Monitoring Profiling Sitecore CMS Collecting memory snapshots during high CPU and analyzing them MEASURE IF YOU WANT TO GO FASTER Sitecore Measure Pipeline performance and profile processors Performance issues in Sitecore Client when complex security roles structure is used Profiling Types Memory Optimization Effective way to resolve the EventQueue, CPU and memory load related issue Diagnosing memory leaks problem in Sitecore MEMORY OPTIMISATION IN SITECORE Investigating memory issues. High memory usage. High Sitecore memory consumption Tools Log Parser Download Command:...