Creating a Sharepoint (2007) Read Only Site

I’m ready to migrate SharePoint 2007 to 2010, and during the migration, I want someone not to add content anywhere, but still I would like people to read the content. Is there a way to make sharepoint 2007 a read-only site?

+4
source share
4 answers

If you are performing an upgrade with a database connection, you can install read-only databases through SQL Management Studio. When SharePoint databases are installed in read-only mode, SharePoint will automatically protect all sites in these databases for viewing only.

+3
source

Try:

stsadm -o setsitelock -url http://server_name -lock noaccess 

This will help you establish a read-only site collection.

+5
source

It is very simple:

Central Administration> Application Management> Quotas and Site Blocking. Then select Read Only.

+3
source

I'm not sure if there is a way to do this in the user interface or through stsadm, but there is a readonly property on the SPSiteAdministration object.

 SPSiteAdministration siteAdmin = new SPSiteAdministration(siteUrl/guid); siteAdmin.ReadOnly = true; siteAdmin.Dispose(); 
+2
source

Source: https://habr.com/ru/post/1312672/


All Articles