Latest articles

  • Using subfolders for Sitecore config files

    Recently, I’ve been changing the organization method I’m using when architecting builds for my clients. Sitecore supports automatically patching in include files from subfolders of App_Config\Include, which allows for architecting project-specific overrides and environment-specific settings in a much cleaner manner. Kamruz Jaman just wrote a great post about this on Friday. The upshot? Stop putting your files… Read more

  • Upcoming VS Online licensing changes greatly helping Microsoft’s position

    Upcoming VS Online licensing changes greatly helping Microsoft’s position

    Last week, Brian Harry announced on his blog some upcoming changes to the Visual Studio Online licensing.  Word is that the changes should be coming in the next few months (an August-like timeframe is mentioned).  The announced changes are going to be a great help in positioning Microsoft against some of their competition in the Application Lifecycle… Read more

  • WCF and CORS: “No ‘Access-Control-Allow-Origin’ header is present on the requested resource”

    WCF and CORS: “No ‘Access-Control-Allow-Origin’ header is present on the requested resource”

    If you are building an Angular app (or other form of HTML5 web application) you are probably running controllers on JSON data to bind to repeaters and present to your users. In many examples, this is usually set up with static data, or a local file, but inevitably you will want to architect something a… Read more

  • Visual Studio and Git error: “URI formats are not supported”

    Visual Studio and Git error: “URI formats are not supported”

    Recently, while trying to synchronize with my Visual Studio Online git repository, the Visual Studio Git plugin started displaying the error “URI formats are not supported” while attempting to execute a pull operation. This appears to be an issue introduced with Update 2, and at least from my own experience only appears to be affecting… Read more

  • Sitecore 7: Ensuring IQueryable ordering with string fields

    Sitecore 7: Ensuring IQueryable ordering with string fields

    I hadn’t had the chance to really play around with the indexing options in Sitecore 7 until this past week when I needed to build a listing page from an index and sort it by the page title. At first, I just couldn’t get it to work. The ordering never seemed to match up to the… Read more

  • Using MongoLab to manage your MongoDb instances

    If you have been looking at getting into using document-oriented storage, you have probably looked at the variety of NoSQL offerings such as CloudDB, Elasticsearch, or MongoDB. These databases are built for scalability, performance, and high availability, tailored for gathering large quantities of data in a reliable manner. My personal preference is MongoDB, as the support… Read more