<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.officezealot.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Mauro Cardarelli</title><subtitle type="html">Delivering High Impact Collaboration,Business Intelligence, and Search through Microsoft Technologies</subtitle><id>http://blogs.officezealot.com/mauro/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.officezealot.com/mauro/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.61129.2">Community Server</generator><updated>2011-08-03T06:17:00Z</updated><entry><title>SPGridView -  syntax error: missing operand after ‘X’ operator</title><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/archive/2011/11/01/30040.aspx" /><id>http://blogs.officezealot.com/mauro/archive/2011/11/01/30040.aspx</id><published>2011-11-01T12:00:00Z</published><updated>2011-11-01T12:00:00Z</updated><content type="html">&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;I was building a custom SharePoint 2010 web part recently and was using the SPGridView to show results in a standard grid.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I wanted to add sorting and filtering on the grid (my next blog post will show coding details on this) and used the three lines below to enable filtering from the column headers:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;grd.FilterDataFields = “,,Status,Type,,,,”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;grd.FilteredDataSourcePropertyName = “FilterExpression”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;grd.FilteredDataSourceProertyFormat = “{1} = ‘{0}’”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;The code worked fine until I changed the first line to enable an additional column:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;grd.FilterDataFields = “,,,Status, Type, Part Vendor,,,”;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Then, I got the following error:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;“syntax error: missing operand after Vendor operator”&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Quick analysis led me to realize that the issue was the space between ‘Part’ and ‘Vendor’ in the field name.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I changed the third line to the following and all was good:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;grd.FilteredDataSourceProertyFormat = “[{1}] = ‘{0}’”;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:0.5in;MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';COLOR:#1f497d;FONT-SIZE:10pt;mso-themecolor:text2;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.officezealot.com/aggbug.aspx?PostID=30040" width="1" height="1"&gt;</content><author><name>Mauro</name><uri>http://blogs.officezealot.com/members/Mauro.aspx</uri></author><category term="filterting" scheme="http://blogs.officezealot.com/mauro/archive/tags/filterting/default.aspx" /><category term="SPGridView" scheme="http://blogs.officezealot.com/mauro/archive/tags/SPGridView/default.aspx" /></entry><entry><title>Change SharePoint 2010 Web Application Port Number</title><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/archive/2011/10/11/30031.aspx" /><id>http://blogs.officezealot.com/mauro/archive/2011/10/11/30031.aspx</id><published>2011-10-11T19:24:00Z</published><updated>2011-10-11T19:24:00Z</updated><content type="html">&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Recently, I had to move an existing SharePoint 2010 web application from the default port to a new port.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is relatively easy to do but does require two steps.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The first is a change made in Central Administration; the second is done in IIS Manager.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Here are the steps I followed:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Step 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;In SharePoint Central Administration:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l1 level1 lfo1;" class=MsoListParagraphCxSpFirst&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Click &lt;SPAN style="COLOR:#0070c0;"&gt;Application Management&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l1 level1 lfo1;" class=MsoListParagraphCxSpMiddle&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Click &lt;SPAN style="COLOR:#0070c0;"&gt;Configure Alternate Access Mapping&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l1 level1 lfo1;" class=MsoListParagraphCxSpMiddle&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Click the web application you are trying to alter&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 10pt 0.5in;mso-list:l1 level1 lfo1;" class=MsoListParagraphCxSpLast&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Change the port number by altering the URL; Save&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Step 2&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;In IIS Manager:&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l0 level1 lfo2;" class=MsoListParagraphCxSpFirst&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Select the SharePoint site that corresponds with the web application above&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l0 level1 lfo2;" class=MsoListParagraphCxSpMiddle&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Click &lt;SPAN style="COLOR:#0070c0;"&gt;Bindings…&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 10pt 0.5in;mso-list:l0 level1 lfo2;" class=MsoListParagraphCxSpLast&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:Symbol;FONT-SIZE:10pt;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;Select the current port; click &lt;SPAN style="COLOR:#0070c0;"&gt;Edit&lt;/SPAN&gt;; change the port number; Save&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 10pt 0.5in;mso-list:l0 level1 lfo2;" class=MsoListParagraphCxSpLast&gt;&lt;SPAN style="LINE-HEIGHT:115%;FONT-FAMILY:'Arial','sans-serif';FONT-SIZE:10pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.officezealot.com/aggbug.aspx?PostID=30031" width="1" height="1"&gt;</content><author><name>Mauro</name><uri>http://blogs.officezealot.com/members/Mauro.aspx</uri></author><category term="Alternate Access Mapping" scheme="http://blogs.officezealot.com/mauro/archive/tags/Alternate+Access+Mapping/default.aspx" /><category term="Port Number" scheme="http://blogs.officezealot.com/mauro/archive/tags/Port+Number/default.aspx" /><category term="IIS" scheme="http://blogs.officezealot.com/mauro/archive/tags/IIS/default.aspx" /></entry><entry><title>Copying a subset of documents from one SharePoint 2007 document library to another</title><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/archive/2011/09/05/30018.aspx" /><id>http://blogs.officezealot.com/mauro/archive/2011/09/05/30018.aspx</id><published>2011-09-05T14:10:00Z</published><updated>2011-09-05T14:10:00Z</updated><content type="html">&lt;P&gt;&lt;STRONG&gt;Request &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;User wants an "easy" way to copy a subset of documents in a large document library to another document library; specifically, the subset is defined as all documents that meet specific metadata criteria (i.e. columns values meet certain conditions).&amp;nbsp; All metadata must move with the documents as well.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Problem &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;While SharePoint allows you to perform filtering on a document library, going in to explorer view (which can be used to move documents) ignores the filtering and always shows all documents&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(One) Solution &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Perform the following:&lt;/P&gt;
&lt;P&gt;1. create a destination document library (no need to recreate metadata columns)&lt;/P&gt;
&lt;P&gt;2. (have SharePoint administrator) go to &lt;A href="http://toplevelpath/Reports%20List/AllItems.aspx"&gt;http://TOPLEVELPATH/Reports%20List/AllItems.aspx&lt;/A&gt; (which is 'Content and Structure Reports')&lt;/P&gt;
&lt;P&gt;3. click New -&amp;gt; New Item&lt;/P&gt;
&lt;P&gt;4. give the report a name and set the CAML Query for your (column) filtering conditions; something like:&lt;BR&gt;&amp;lt;Where&amp;gt;&amp;lt;Eq&amp;gt;&amp;lt;FieldRef Name="&lt;STRONG&gt;&lt;EM&gt;metatagexample&lt;/EM&gt;&lt;/STRONG&gt;"&amp;gt;&amp;lt;/FieldRef&amp;gt;&amp;lt;Value Type="&lt;STRONG&gt;&lt;EM&gt;Text&lt;/EM&gt;&lt;/STRONG&gt;"&amp;gt;&lt;STRONG&gt;&lt;EM&gt;a&lt;/EM&gt;&lt;/STRONG&gt;&amp;lt;/Value&amp;gt;&amp;lt;/Eq&amp;gt;&amp;lt;/Where&amp;gt;&lt;/P&gt;
&lt;P&gt;5. save the report&lt;/P&gt;
&lt;P&gt;6. go to &lt;A href="http://sitepath/_Layouts/sitemanager.aspx"&gt;http://SITEPATH/_Layouts/sitemanager.aspx&lt;/A&gt; (which is 'Site Content and Structure')&lt;/P&gt;
&lt;P&gt;7. select your new report from the list of Views (this should show the filtered list of documents)&lt;/P&gt;
&lt;P&gt;8. select all documents (by clicking the checkbox in the upper left)&lt;/P&gt;
&lt;P&gt;9. click Actions -&amp;gt; Copy then pick your destination document library&lt;/P&gt;
&lt;P&gt;All documents will be copied and all metadata will be replicated as well!&lt;/P&gt;&lt;img src="http://blogs.officezealot.com/aggbug.aspx?PostID=30018" width="1" height="1"&gt;</content><author><name>Mauro</name><uri>http://blogs.officezealot.com/members/Mauro.aspx</uri></author><category term="MOSS 2007" scheme="http://blogs.officezealot.com/mauro/archive/tags/MOSS+2007/default.aspx" /><category term="Document move" scheme="http://blogs.officezealot.com/mauro/archive/tags/Document+move/default.aspx" /></entry><entry><title>"The form submission cannot be processed because it exceeded the maximum length allowed by the Web administrator"</title><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/archive/2011/09/01/30017.aspx" /><id>http://blogs.officezealot.com/mauro/archive/2011/09/01/30017.aspx</id><published>2011-09-01T17:53:00Z</published><updated>2011-09-01T17:53:00Z</updated><content type="html">&lt;P&gt;You perform an &lt;STRONG&gt;stsadm -o export&lt;/STRONG&gt; on a SharePoint site and then try to import that site using &lt;STRONG&gt;stsadm -o import&lt;/STRONG&gt; into a different site collection.&amp;nbsp; Upon analyzing the import log file you notice several errors referring to "&lt;EM&gt;The form submission cannot be processed because it exceeded the maximum length allowed by the Web administrator&lt;/EM&gt;."&amp;nbsp; The site import appears to have otherwise completed successfully.&amp;nbsp; What happened?&lt;/P&gt;
&lt;P&gt;There is a Microsoft KB article (&lt;A href="http://support.microsoft.com/kb/822059"&gt;http://support.microsoft.com/kb/822059&lt;/A&gt;) associated with this error message.&amp;nbsp; It states that the error occurs when you try to upload a file that is greater in size than the allotted maximum for your SharePoint web application.&amp;nbsp; Bingo!&amp;nbsp; In this case, the original site was associated with a web application that allowed for greater file sizes (changed in Central Administration).&amp;nbsp; The new site (in a different web application) has a lower file size limit; thus, the import could not allow the bigger files to be imported.&amp;nbsp; The resolution is to change the file size limit for the destination environment and re-run the import.&lt;BR&gt;&lt;/P&gt;&lt;img src="http://blogs.officezealot.com/aggbug.aspx?PostID=30017" width="1" height="1"&gt;</content><author><name>Mauro</name><uri>http://blogs.officezealot.com/members/Mauro.aspx</uri></author><category term="Stsadm" scheme="http://blogs.officezealot.com/mauro/archive/tags/Stsadm/default.aspx" /><category term="Migration" scheme="http://blogs.officezealot.com/mauro/archive/tags/Migration/default.aspx" /></entry><entry><title>“Additions to this Web site have been blocked”</title><link rel="alternate" type="text/html" href="http://blogs.officezealot.com/mauro/archive/2011/08/03/30009.aspx" /><id>http://blogs.officezealot.com/mauro/archive/2011/08/03/30009.aspx</id><published>2011-08-03T12:17:00Z</published><updated>2011-08-03T12:17:00Z</updated><content type="html">&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;Another day, another challenge in administering a SharePoint 2010 environment! &lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;Here’s the scenario… &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;Service Pack 1 was applied to an RTM instance of a SharePoint 2010 environment.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The main site collection was behaving normally and was not recently restored prior to the application of SP1.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Upon the successful application, users noticed they could no longer add content.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Investigation showed the farm administrator could no longer edit permissions or add subsites.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;All security definitions seemed to be in place and there were no policies defined that would alter security.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Heh?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="MARGIN:0in 0in 10pt;" class=MsoNormal&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;Upon trying to change the site collection administrator (in Central Administration), the farm administrator received an “&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;I style="mso-bidi-font-style:normal;"&gt;Additions to this Web site have been blocked&lt;/I&gt;&lt;/B&gt;” error message.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This message was actually a very good hint as we then immediately looked at the site quotes and locks.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Sure enough, the site collection was set to read-only!&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;No idea how this came to be but once we removed the lock all was good again.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Here’s how…&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 0pt 0.5in;mso-list:l0 level1 lfo1;" class=MsoListParagraphCxSpFirst&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri&gt;&lt;FONT size=3&gt;Go to &lt;U&gt;Central Administration&lt;/U&gt; -&amp;gt; &lt;U&gt;Application Management&lt;/U&gt; -&amp;gt; &lt;U&gt;Configure Quotas and Locks&lt;/U&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 10pt 0.5in;mso-list:l0 level1 lfo1;" class=MsoListParagraphCxSpLast&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Set the Site Lock Information to "&lt;B style="mso-bidi-font-weight:normal;"&gt;Not Lock&lt;/B&gt;" (it had been set to “Site Collection is set to Read-only (blocks additions, updates, and deletions)”&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style="TEXT-INDENT:-0.25in;MARGIN:0in 0in 10pt 0.5in;mso-list:l0 level1 lfo1;" class=MsoListParagraphCxSpLast&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.officezealot.com/aggbug.aspx?PostID=30009" width="1" height="1"&gt;</content><author><name>Mauro</name><uri>http://blogs.officezealot.com/members/Mauro.aspx</uri></author><category term="Lock" scheme="http://blogs.officezealot.com/mauro/archive/tags/Lock/default.aspx" /><category term="SP2010 SP1" scheme="http://blogs.officezealot.com/mauro/archive/tags/SP2010+SP1/default.aspx" /></entry></feed>