<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Welcome to ShanthaKumar&#039;s Blog, SharePoint and more... &#187; Configuration</title>
	<atom:link href="http://www.ktskumar.com/blog/tag/configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ktskumar.com</link>
	<description>more Points to Share....</description>
	<lastBuildDate>Tue, 13 Dec 2011 17:36:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Enable Customization for Refinement Panel Web part</title>
		<link>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/</link>
		<comments>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 16:05:00 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[Search]]></category>
		<category><![CDATA[SharePoint-2010]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.ktskumar.com/blog/2011/07/enable-customization-for-refinement-panel-web-part/</guid>
		<description><![CDATA[“ The Refinement Panel web part in SharePoint 2010 provides a summary of search results and enables user to filter the search results. ” I have Search Center Site, there i have Refinement panel web part in results page. To enable the modifications for Refinement Panel web part, &#160; 1)  Navigate to the Search results [...]]]></description>
			<content:encoded><![CDATA[<p><em>“ The Refinement Panel web part in SharePoint 2010 provides a summary of search results and enables user to filter the search results. ”</em></p>
<p>I have Search Center Site, there i have Refinement panel web part in results page. To enable the modifications for Refinement Panel web part,</p>
<p><em> </em></p>
<p><a href="http://www.ktskumar.com/wp-content/uploads/2011/07/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; float: left; padding-top: 0px; border: 0px;" title="image" src="http://www.ktskumar.com/wp-content/uploads/2011/07/image_thumb.png" border="0" alt="image" width="200" height="404" align="left" /></a></p>
<p>&nbsp;</p>
<p>1)  Navigate to the Search results page through browser.</p>
<p>2) Edit the page by navigating Site Actions -&gt; Edit Page</p>
<p>3) Select the Refinement Panel Web part, Click the edit arrow and then Click the Edit Web part menu. This opens the Web part Properties tool pane.</p>
<p>4) In the Refinement section, clear the <strong>Use Default Configuration</strong> check box.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>5) Then modify Data view properties and other properties to view modified Refinement Panel</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2011/07/enablecustomizedrefinementwebpart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.</title>
		<link>http://www.ktskumar.com/blog/2009/03/the-security-validation-for-this-page-is-invalid-click-back-in-your-web-browser-refresh-the-page-and-try-your-operation-again/</link>
		<comments>http://www.ktskumar.com/blog/2009/03/the-security-validation-for-this-page-is-invalid-click-back-in-your-web-browser-refresh-the-page-and-try-your-operation-again/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 12:31:28 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[MOSS]]></category>

		<guid isPermaLink="false">http://ktskumar.wordpress.com/?p=92</guid>
		<description><![CDATA[The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again. The above error will be thrown at the time of updating Library or Lists items due to authentication problem, or We didn&#8217;t have the rights to update the items. By using the follwoing [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000080;">The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.</span></p>
<p>The above error will be thrown at the time of updating Library or Lists items due to authentication problem, or We didn&#8217;t have the rights to update the items.<br />
By using the follwoing code, We can overcome this issue,</p>
<p><span style="color:#000080;">Web.AllowUnsafeUpdates = true;<br />
item["Title"]=&#8221;Sample&#8221;;<br />
item.Update();</span></p>
<p>or we can also use the follwoing code to overcome the above error, this will affect the WebApplication. This will change the Security settings of a Web Application to allow the anonymous user to update item.</p>
<p><span style="color:#000080;">web.Site.WebApplication.FormDigestSettings.Enabled = false;<br />
item["Title"]=&#8221;Sample&#8221;;<br />
item.Update();<br />
web.Site.WebApplication.FormDigestSettings.Enabled = true;</span></p>
<p>or we can change the settings in Central Administration to anonymously update the items. But this method will be dangerous.</p>
<ul>
<li>Central Administration &gt; Application Management &gt; Web Application General Settings</li>
<li>Choose the WebApplication to overwrite the settings</li>
<li>Select the option Off in Web Page Security Validation as follows,</li>
</ul>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-95" style="border:#000080 1px solid;" title="securitysettings1" src="http://ktskumar.files.wordpress.com/2009/03/img1.jpg" alt="securitysettings1" width="500" height="81" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2009/03/the-security-validation-for-this-page-is-invalid-click-back-in-your-web-browser-refresh-the-page-and-try-your-operation-again/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>No Excel Calculation Services is available in the farm.</title>
		<link>http://www.ktskumar.com/blog/2009/03/no-excel-calculation-services-is-available-in-the-farm/</link>
		<comments>http://www.ktskumar.com/blog/2009/03/no-excel-calculation-services-is-available-in-the-farm/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 11:57:33 +0000</pubDate>
		<dc:creator>Shantha Kumar</dc:creator>
				<category><![CDATA[Excel Services]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Excel Calculation Services]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Shared Services]]></category>

		<guid isPermaLink="false">http://ktskumar.wordpress.com/?p=71</guid>
		<description><![CDATA[ This was the error, i recieved recently when i open an Excel sheet in browser.  I didn&#8217;t recived this error before, so i searched in recent log file. That file list out the following line 03/04/2009 14:27:33.07    w3wp.exe (0x14C4)    0x020C     Excel Services      Excel Services Web Front End  5pad    Critical [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-medium wp-image-69" style="border:1px solid #000099;" title="xlserviceserr1" src="http://ktskumar.files.wordpress.com/2009/03/xlserviceserr1.jpg?w=300" alt="xlserviceserr1" width="300" height="109" /></p>
<p> This was the error, i recieved recently when i open an Excel sheet in browser.  I didn&#8217;t recived this error before, so i searched in recent log file. That file list out the following line</p>
<p><span style="color:#ff0000;">03/04/2009 14:27:33.07    w3wp.exe (0x14C4)    0x020C</span><span style="color:#ff0000;"> </span><span style="color:#ff0000;">    Excel Services      Excel Services Web Front End  5pad    Critical     No Excel Calculation Services is available in the farm.[User: SHAREPOINTsystem]</span></p>
<p>Then i understood, there is no Excel Calculation Services available in my Server Farm. So, I moved to my Central Administration Page,</p>
<ul>
<li><span style="color:#000099;">Central Administration -&gt; Operations -&gt; Services on Server <br />
</span></li>
<li><span style="color:#000099;"> Select Excel Calculation server role radio button<br />
</span></li>
<li><span style="color:#000099;">Start the Excel Calaculation Services</span></li>
</ul>
<p>Now I moved back to my Excel sheets Library and clicked the Excel File. Now all works fine for me&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ktskumar.com/blog/2009/03/no-excel-calculation-services-is-available-in-the-farm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

