Monday, July 19, 2010

Event ID 12317 logged every hour when using FRM

Problem:

When running File Resource Manager you get event ID 12317 logged every hour.

Cause:

Refer to article: http://blogs.technet.com/b/filecab/archive/2006/09/29/459430.aspx

This is due to the PDC Emulator (domain controller) not having the NT Authority\Authenticated Users group in the built in Users group, which is the default. You will get this error logged every hour, however the FRM alerts will still work.

Resolution:

Steps to resolve this problem here...

  1. Add NT Authority\Authenticated Users back in your built in Users group on PDC Emulator.

Technorati Tags:
  

del.icio.us Tags:

Wednesday, July 14, 2010

Chrome Type equals none , changes not saved

Say you modify your web part to have the Chrome Type include the Title or Title and Border…you click OK and save. However you changes are not saved and Chrome Type still shows its previous setting.

This is either because the aspx page has the frame type hard coded in. This can happen if you have a custom web part, or you have a web part that you exported and then imported back in.

To fix this you can change the aspx page’s frame type line entry below.

<FrameType>TitleBarOnly</FrameType>

Or it can be if you are on a List View. The chrome type is off or none on these since they assume the web parts are the list you are on. In those cases you need to create a web part page to use instead.

Friday, July 9, 2010

SharePoint how to redirect one page

There are many ways to redirect a page in SharePoint. If you have a Publishing Site then you have a built in feature using Create Page – Redirect Page page layouts.

If you don’t you can still add a Content Editor Web Part to your page and in the Source button add:

<meta http-equiv="refresh" content="1;url=http://LindaChapman.BlogSpot.com/NewPage.aspx">

If you want to display a message for them to see then add that text first and change the value of content=”1  to a higher number of seconds to wait before redirecting.

I usually just change the Title of my content editor web part to have the message I want and keep it at 1 second.