Developing, Deploying, and Monitoring Sandboxed Solutions in SharePoint 2010

New article in MSDN Magazine on Developing, Deploying, and Monitoring Sandboxed Solutions in SharePoint 2010 describes how sandboxed solutions in SharePoint 2010 provide a framework for safe and rapid deployment of solutions.

Article here

QOD: Can you audit permission changes?

Question: Can you audit permission changes in a site collection?

Answer: This is possible, but by default security changes are not audited. To enable auditing:

  1. Select Site Actions + Site Settings + Modify All Site Settings at the site collection root site.
  2. Click the Site collection audit settings link.
  3. Select the Editing users and permissions option:

Audit1

Once turned on, changes to permissions on sites, lists and items will be audited. To view the audit log:

  1. Click the Audit log reports link on the “Site Settings” page for the site collection.
  2. Click the Security Settings link:

Audit2

This will open the audit log in an Excel spreadsheet. The following example shows a summary showing a single security change resulting from a breaking of permission inheritance:

Audit3

More detailed information is available in the “Report Data” sheet in the Excel workbook.

Source

WSS SP3: Post Installation Issues

Post Windows SharePoint Services Service Pack3 installation, you may 

Encounter error messages:

Exception from HRESULT: 0x80040E14.
Troubleshoot issues with Windows SharePoint Services.

HTTP 500 – Internal server error

Unable to perform the following operations:

Edit columns on a list

Import a spreadsheet

Add choices to a choice field

To resolve this, run the following command for

Windows SharePoint Services 2.0

1.Click Start, click Run, type cmd in the Open box, and then click OK.

2.At the command prompt, type the following lines, and then press ENTER after each line:

cd /d %commonprogramfiles%\Microsoft Shared\Web Server Extensions\60\Bin
stsadm -o upgrade -forceupgrade

3.Type exit to exit Command Prompt.

Windows SharePoint Services 3.0

1.Click Start, click Run, type cmd in the Open box, and then click OK.

2.At the command prompt, type the following lines, and then press ENTER after each line:

cd /d %commonprogramfiles%\Microsoft Shared\web server extensions\12\BIN
stsadm -o upgrade -forceupgrade

3.Type exit to exit Command Prompt.

Sourced from Microsoft KB 841216

Tip: Page Editor Unavailable

image So you can’t edit page? Well chances are that someone has edited the page and not checked in. It’s been checked out and not published.

Navigate to Pages library on your site to to see who has this checked out this page.

Image Source | Content Source

Fix: SQL Server Reporting issues with SharePoint

Situation: You have SQL Server Reporting installed and you have just installed SharePoint. You discover that your SQL Server Reporting stops working.

Piyush Mittal has documented his field experience.

Simple answer:

Using a dedicated application pool can help avoid conflict with existing Web applications.

Refer to this Microsoft article for more info.

If you install SharePoint Services after Reporting Services is already installed and configured, your Reporting Services installation will be unusable until you perform the following steps:

1. Start the Reporting Services Configuration tool.

STSADM.EXE -o addpath -url http://localhost/ReportServer -type exclusion
and
STSADM.EXE -o addpath -url http://localhost/Reports -type exclusion
By default, the Stsadm.exe file is located in C:\Program Files\Common Files\Microsoft Shared\Web server extensions\60\bin

2. Configure the Report Server virtual directories.

Check out this link to configure the directories.

Thanks Piyush.