Skip to main content

Sitecore Multisite & Multilingual workout


Safely Defining Multiple Sites in Sitecore

Quickly Create New Language Versions on your Sitecore CMS

Language Fallback not working for Fields with Standard Values (Sitecore 8.1)

Language Fallback in Sitecore 8.1

Sitecore multi-site hosting: hostName attributes

Brian Pedersen's Sitecore and .NET Blog

Best Practices for Sitecore Internationalization

Getting site context

Sitecore Managed Sites as Virtual Folders

What is the usage of “physicalFolder” and “virtualFolder” attributes in a Sitecore site defintion

How to get the correct SiteContext for an Item when you only have the Item

Sitecore.Links.LinkManager and the context

How to get correct site context in micro-site implementation in sitecore 8.1

Sitecore, SiteContext and Context.Database, oh my!

Resolving the SiteContext by URL

Sitecore get host name from a different context

Get the item matching a URL in Sitecore

Sitecore Context Site Resolution

Uploading media item

Why my Sitecore Media Item created in multiple languages?

Upload Sitecore media items in selected languages

Creating Localized PDFs in the Sitecore Media Library

Create Media Item along with language version through Sitecore Item Web API

Slowness while uploading media files

Sitecore performance tweaking - Media library issues



Comments

Popular posts from this blog

Docker Desktop service is not running, would you like to start it?

Bellow message appear while restarting Windows laptop having Docker Desktop installed. Docker Desktop service is not running, would you like to start it? Windows will ask you for elevated access. During online search, we found below solution on stackOverflow which worked for us.  Docker: Service is not running. Windows will ask you for elevated access   Please follow this solution. Hope this helps.

SQL Server

Check Fragmentation stats SELECT dbschemas . [name] as 'Schema' , dbtables . [name] as 'Table' , dbindexes . [name] as 'Index' , indexstats . alloc_unit_type_desc , indexstats . avg_fragmentation_in_percent , indexstats . page_count FROM sys . dm_db_index_physical_stats ( DB_ID (), NULL, NULL, NULL, NULL) AS indexstats INNER JOIN sys . tables dbtables on dbtables . [object_id] = indexstats . [object_id] INNER JOIN sys . schemas dbschemas on dbtables . [schema_id] = dbschemas . [schema_id] INNER JOIN sys . indexes AS dbindexes ON dbindexes . [object_id] = indexstats . [object_id] AND indexstats . index_id = dbindexes . index_id WHERE indexstats . database_id = DB_ID () ORDER BY indexstats . avg_fragmentation_in_percent desc Rebuild Indexes DECLARE  @tsql  NVARCHAR ( MAX )   DECLARE  @fillfactor  INT SET  @fillfactor  =  90 SELECT  @tsql  =    STUFF...

Export Pdf list via Sitecore PowerShell Extension

This Sitecore PowerShell utility export a list of Pdfs for specified location  $FilePath = "master:" + (Get-Item .).Paths.Path Import-Function -Name ConvertTo-Xlsx $DownloadReport = 1 $resultObj = @() $PdfList = Get-childItem -Path $FilePath -Recurse | Where-Object { $_.TemplateName -eq "Pdf"} $ItemReferrerList = "" if( $PdfList ){     $PdfList | ForEach-Object {         ######Get-ItemReferrer Start         $ItemArray = @()         $ItemReferrer = Get-ItemReferrer -ID $_.ID | Where-Object { $_.Name -ne "Admin" -and $_.ItemPath -like "/sitecore/content/*" } | Select-Object -Property ID,Version         If( $ItemReferrer ){             $ItemReferrer | ForEach-Object {                $item = Get-Item -Path master: -ID $_.ID              $latestVersion = $item.Versions.Count     ...