Monday, September 8, 2014

Issue with SEO Toolkit module and SBOS Accelerator Module running together

One of my recent investigations was about an issue caused by SBOS Accelerator module. After through investigation, it proved to be an issue caused by SEO Toolkit module. This post is about my findings.

Environment :

Sitecore 7.2 rev. 140526
Sitecore Search Engine Optimization -1.3.0 rev.130319
SBOS Accelerators Shared Source Module - 2.0 rev. 140422


Issue 1 : SEO Toolkit module issue
When we run the seo tool for a page, and then select the "Links" link in the results, it returns/displays the following error


















when "Links .." link selected,


Issue 2 : SBOS module issue

When we select the "Enable personalization tracking" checkbox and save, and then return to the same place again, checkbox was displayed unselected/unchecked




Investigation/Solution :

1. When check into the sitecore error logs, following error was found 

Error Logs Message I:

Exception: System.Web.HttpUnhandledException
Message: Exception of type 'System.Web.HttpUnhandledException' was thrown.
Source: System.Web
   at System.Web.UI.Page.HandleError(Exception e)
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
   at System.Web.UI.Page.ProcessRequest()
   at System.Web.UI.Page.ProcessRequest(HttpContext context)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

Nested Exception

Exception: System.Web.HttpException
Message: The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
Source: System.Web
   at System.Web.UI.ControlCollection.Add(Control child)
   at Sitecore.Layouts.PageContext.InsertSystemControls()
   at (Object , Object[] )
   at Sitecore.Pipelines.CorePipeline.Run(PipelineArgs args)
   at Sitecore.Layouts.PageContext.BuildControlTree(Object sender, EventArgs e)
   at System.Web.UI.Page.PerformPreInit()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

 
2. Checked our own control files. -> we could not find any place with <% .. %>
 3. Disabled SBOS Accelerators module (rename /App_Config/Include/Sitecore.SBOSAccelerators.config file to Sitecore.SBOSAccelerators.config.disabled)
 when clicked on the "Links" after running the SEO module, it again return the error.
4. But, this time, sitecore logs displayed a different error message
Error Logs Message II

Exception: System.Web.HttpRequestValidationException
Message: A potentially dangerous Request.Form value was detected from the client (<postData><links><link controlID=""a70"><![CDATA[http://chg....").
Source: System.Web
   at System.Web.HttpRequest.ValidateString(String value, String collectionKey, RequestValidationSource requestCollection)
   at System.Web.HttpRequest.ValidateHttpValueCollection(HttpValueCollection collection, RequestValidationSource requestCollection)
   at Sitecore.Pipelines.PreprocessRequest.SuppressFormValidation.Process(PreprocessRequestArgs args)
   at (Object , Object[] )
   at Sitecore.Pipelines.CorePipeline.Run(PipelineArgs args)
   at Sitecore.Nexus.Web.HttpModule. (Object , EventArgs )
   at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

6756 13:24:19 ERROR Application error.
Exception: System.Web.HttpRequestValidationException
Message: A potentially dangerous Request.Form value was detected from the client (<html id="...lang="en"><!--<![endif]--><hea...").
Source: System.Web
   at System.Web.HttpRequest.ValidateString(String value, String collectionKey, RequestValidationSource requestCollection)
   at System.Web.HttpRequest.ValidateHttpValueCollection(HttpValueCollection collection, RequestValidationSource requestCollection)
   at Sitecore.Pipelines.PreprocessRequest.SuppressFormValidation.Process(PreprocessRequestArgs args)
   at (Object , Object[] )
   at Sitecore.Pipelines.CorePipeline.Run(PipelineArgs args)
   at Sitecore.Nexus.Web.HttpModule. (Object , EventArgs )
   at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)


5. To solve this issue, we add the following property to <httpRuntime ..> tag in web.config
<httpRuntime maxRequestLength="512000" executionTimeout="600" enableKernelOutputCache="false" relaxedUrlToFileSystemMapping="true" requestValidationMode="2.0" />

6. Then, SEO Toolkit module start to work fine.
7. Re-enabled the SBOS Accelerators module (rename /App_Config/Include/Sitecore.SBOSAccelerators.config.disabled to Sitecore.SBOSAccelerators.config)
8. SEO toolkit module stopped working again with the Error Logs Message I
9. Then, I looked into the control files in SEO module. In those files I found the <% .. %> code part.
/seotoolkit/ui/Extender.ascx, /seotoolkit/ui/Keyword.ascx, /seotoolkit/ui/SearchEngine.ascx
Fortunately, those files did not have any code behind files. So, I create a seperate library project and moved the <% .. %> code parts into that project. Then, point the seotoolkit .ascx files codebehind to those library .cs files.
All the things start to work properly. (Including the issue 2 - "Enable personalization tracking" checkbox).
Hope this help..

Friday, July 18, 2014

Sitecore DMS with MongoDB

From Sitecore 7.5, Sitecore has move its DMS database to MongoDB database.

    http://www.velir.com/blog/index.php/2014/06/03/xdb-sitecore-dms-moves-to-mongodb/
    http://www.sitecore.net/About/Press-and-Media/Press-Releases/2014/05/MongoDB.aspx

Some of the benefits that Sitecre is aiming to achieve by moving to MongoDB are,

  • Scalability
  • Speed/Performance
  • High Availability
  • Flexibility with the Data model

About MongoDB
MongoDB is the leading NoSQL database, empowering businesses to be more agile and scalable.
MongoDB is built for scalability, performance and high availability, scaling from single server deployments to large, complex multi-site architectures.
Quote : https://www.mongodb.com/mongodb-overview

To achieve high scalability and speed, MongoDB has cut down (removed) some features in RDBMs. Few features that MongoDB does not deal with are,

  •     Joins
  •     Complex Transactions


MongoDB provides some online training/certification programs, which I think very good to learn about MongoDB.
    https://university.mongodb.com

I have started to follow "M102: MongoDB for DBAs" training program from MongoDB university. Even though I am in the beginner level when it comes to MongoDB, I have already started to love this new database. :-)

Tuesday, May 20, 2014

Drawbacks in Twitter Bootstrap

From last year onwards, when I first saw and used bootstrap, I was a great fan of that. I used it in one of my ASP.NET MVC project and I was actually in love with it. It makes life so much easy for the developers that is not very good with front-end development (as in my case :-D ) as well as for rapid application development and prototyping.

Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
Quote : http://getbootstrap.com 
But, recently I have heard some negatives about Bootstrap framework from few of my UI expert friends. I tried to list the drawback points below.
  • Adds more than necessary (bulky) HTML and CSS to a web page
  • Hard to structure/design web pages as necessary
  • Contains some accessibility issues - Ex: color contrast issues, non-sementic markup, etc
  • Released versions are not backward compatible
  • W3C HTML and CSS validation issues

Alternative/Options :

  • Customize the bootstrap framework to fix these issues
  • Foundation 5 framework - http://foundation.zurb.com     
    • Note: I have not used this. One of my UI expert friend highly recommend this framework


Some good links regarding this issues :

http://www.wearecube.ch/limitations-of-twitter-bootstrap/
http://stackoverflow.com/questions/14227000/pros-cons-of-switching-to-twitter-bootstrap
https://github.com/dobtco/bootstrap-accessible/issues


Wednesday, April 16, 2014

Modeling Sitecore Data Templates

Yesterday, one of my best friends asked me, "What is the process you are using to Model sitecore data templates, out of sitecore?"

After that I did some research and came up with the below points.
  • Think sitecore data templates as Object Oriented classes.
  • Use template inheritance as OO Inheritance.
  • Use Class Diagrams to do the initial modeling of data in the site.
  • Think only about the data in the site. Don't think about the design.
  • MS Visio (or any that kind of tool) can be used for draw your initial models

I found following links very useful

http://gettingtoknowsitecore.blogspot.com/2010/01/inheritance-content-modeling-sitecore.html

http://maigruen.netzkern.de/data-modeling-in-sitecore.aspx

http://sdn.sitecore.net/Developer/Fundamental%20Concepts/Template.aspx

http://sdn.sitecore.net/upload/sdn5/developer/fundamentals.pdf
        2.3 Templates and Field


Please let me know your idea/methodology about this as comments below.

Friday, March 14, 2014

Sitecore Support Package Generator tool

Earlier days, when we need support from sitecore support, they are asking to submit set of documents. Normally, they are the same set of document like log files, App_Config folder, web.config, etc. This is a time consuming, boring process.

Last year, sitecore released a tool to generate these necessary files for sitecore support automatically.

That is Sitecore Support Package Generator.
http://marketplace.sitecore.net/en/Modules/Sitecore_Support_Package_Generator.aspx

This tool will generate/collect the required files from a given sitecore installation and generate a zip for you or will directly submit it to sitecore support. Cool.. isn't it :-)
This saved lot of time for us. :-)

Quote :
Features
The Sitecore Support Package Generator looks at a Sitecore CMS instance and collects information about:
• Application pool
• Web.config file
• /App_config folder content
• Sitecore and IIS logs
• Windows event logs
• Performance counters
• /bin directory listing
• .NET framework files — required for working with process memory dumps
• Machine's hardware configuration
• IIS application pool identity user permissions
• Hash codes of all files in the solution.
• All files from /temp/__UpgradeHistory folder.


Think of a scenario that you don't have access to your production servers or your production servers are managed by a other team. Then you need to get some details from the server to fix a bug/issue in the production environment.
This tool comes handy in this scenario also. You can provide this tool to those people who manage production servers and just asked them to run this and send you the generated zip. simple. :-)



Thursday, February 20, 2014

How to find packages installed on a Sitecore Instance

Few years back, one of the questions that I got from my manager was "Is there a way to detect/backtrack which packages are installed on a sitecore instance ?"

My answer was "No" to him at that time.

But, recently when I'm going through google, I found a blog post which describe a way to achieve this. Actually, this feature is already there in sitecore. We only have to know the where to look.

Login to Sitecore Desktop
Change database to "Core"
Open Content Editor and expand "/sitecore/system/packages/installation history" node

Here, you can view all the packages installed in the sitecore instance.
One thing to note that is, when you create the packages, remember to use the "Package name", "Author", "Version" fields as needed. Those field values are stored in the package installation history items.

For example, keeping "Package Name" as same for same type packages will store them under the same parent node in sitecore "/sitecore/system/packages/installation history" node.


Following blog post is about a simple tool/webpage to see the above information in a graphical way.
http://sitecorebasics.wordpress.com/2013/11/11/package-history-user-guide/


http://kirkegaard-at.blogspot.com/2013/10/sitecore-package-installation-history.html




Use of EnableEventQueue setting

When an item is updated and published, it did not get reflected on the website. But, when IIS cache is cleared, this new changes started to reflect on the website.

So, I looked into the code and could not find any issue. Then, I moved my focus to the sitecore configurations. Following are the steps that I tried/look.

1. Checked current website name is included in the <event name="publish:end"> node and <event name="publish:end:remote"> node.
    What this setting does is, it says to sitecore clear html cache of the sites specified in that event section, on publish.

2. Then, I looked into EventQueue table in the web database. It does not had any entries. So, that was the issue. So, I change "EnableEventQueues" setting to "true" on CM instance. This did the trick.

Reason for our issue was that sitecore is using EventQueue table entry to clear the cache on publish. Since there were no entries in the table, sitecore did not clear any cache.

Read following blog entries which describe the use of EventQueue table and settings in details to get a better understanding.

http://sitecorebasics.wordpress.com/2011/03/19/basics-of-sitecore-event-queue/
http://www.sitecore.net/Community/Technical-Blogs/Getting-to-Know-Sitecore/Posts/2010/07/Introducing-the-Sitecore-Event-Queue.aspx