If you ever needed to export or import Sitecore packages dynamically through code, this is the article for you. You could be integrating it into automated build process or simply trying to move items between two environments. Here is the Export Code: using (new Sitecore.SecurityModel.SecurityDisabler()) { Sitecore.Data.Database db = Sitecore.Configuration.Factory.GetDatabase(“master”); Sitecore.Install.PackageProject document = new Sitecore.Install.PackageProject(); [...]
Author Archives 
Sitecore Lucene Search Index
Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -> Indexes section in the Web.Config. Starting in Sitecore 6.4, they introduced a new Search namespace – Sitecore.Search, this uses the Sitecore -> Search -> Configuration -> Indexes section in Web.Config. From what I know, Sitecore recommends using the [...]
What Does a Verizon iPhone Mean to You?
The long rumored partnership between Verizon and Apple is reportedly just around the corner. It is supposed to become reality for the consumer in early 2011. Whatever you think about Apple and its methods, the iPhone is undeniably huge. Still, Apple had to step out from its exclusive AT&T contract because of top flight competition [...]
Sitecore – Upload to Media Library Issue/Problem
Recently I had an issue while importing few thousand images and documents into the Sitecore Media Library. I had the following settings in Web.Config: <!– UPLOAD AS FILES Determines if media should be uploaded as files or as database blobs. Default: false –> <setting name=”Media.UploadAsFiles” value=”false” /> <!– MEDIA – USE ITEM PATHS FOR URLS [...]