SP2010: Fixing Javascript / Ribbon errors

I had some users complaining about their Ribbon not working. When looking more closely, SharePoint was generating lot’s of JavaScript errors in IE8. I had no clue why (still don’t have really), but here are two solutions which you can try to fix this problem:

In web.config, make sure the following section exists:

<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression=”false” enableCaching=”true” />
</scripting>
</system.web.extensions>

First, make sure it’s not there already since that will generate errors. This fixed the problem for me.

Second, several others have reported that this might do the trick:

Lookup /_vti_bin/sts in IIS (for your SharePoint site of course). The application pool for that site will be set to ‘SecurityTokenApplicationPool’. Change that setting to match the application pool used for your site.

I wish I could explain more about the problem, but I really cannot. But hey, if these fixes work… 🙂

Related posts

Latest posts

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *