<?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>SharePoint Geek &#187; errors</title>
	<atom:link href="http://sharepoint-geek.com/category/errors/feed/" rel="self" type="application/rss+xml" />
	<link>http://sharepoint-geek.com</link>
	<description>SharePoint Tips &#38; Tricks</description>
	<lastBuildDate>Thu, 29 Jul 2010 19:19:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>A potentially dangerous Request.Form value</title>
		<link>http://sharepoint-geek.com/2010/01/07/a-potentially-dangerous-request-form-value/</link>
		<comments>http://sharepoint-geek.com/2010/01/07/a-potentially-dangerous-request-form-value/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 18:00:00 +0000</pubDate>
		<dc:creator>stewart</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[logs]]></category>
		<category><![CDATA[sharepoint security]]></category>
		<category><![CDATA[web.config]]></category>
		<category><![CDATA[wss]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://sharepoint-geek.com/2010/01/07/a-potentially-dangerous-request-form-value/</guid>
		<description><![CDATA[We were having trouble adding a user to a site collection.&#160; Every time we hit the search button or clicked the check userid button the system would just sit there and spin. I added the following section of the web.config to resolve the issue. &#60;/compilation&#62; &#60;pages enableSessionState=&#34;false&#34; enableViewState=&#34;true&#34; enableViewStateMac=&#34;true&#34; validateRequest=&#34;false&#34; pageParserFilterType=&#34;Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>We were having trouble adding a user to a site collection.&#160; Every time we hit the search button or clicked the check userid button the system would just sit there and spin. I added the following section of the web.config to resolve the issue.</p>
<div style="border-right: #ccc 1px solid; border-top: #ccc 1px solid; overflow: auto; border-left: #ccc 1px solid; width: 100%; border-bottom: #ccc 1px solid; height: 200px">
<pre class="csharpcode"><span class="kwrd">&lt;/</span><span class="html">compilation</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">pages</span> <span class="attr">enableSessionState</span><span class="kwrd">=&quot;false&quot;</span> <span class="attr">enableViewState</span><span class="kwrd">=&quot;true&quot;</span> <span class="attr">enableViewStateMac</span><span class="kwrd">=&quot;true&quot;</span> <span class="attr">validateRequest</span><span class="kwrd">=&quot;false&quot;</span> <span class="attr">pageParserFilterType</span><span class="kwrd">=&quot;Microsoft.<a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a>.ApplicationRuntime.SPPageParserFilter, Microsoft.<a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a>, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&quot;</span> <span class="attr">asyncTimeout</span><span class="kwrd">=&quot;7&quot;</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">namespaces</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;</span><span class="html">remove</span> <span class="attr">namespace</span><span class="kwrd">=&quot;System.Web.UI.WebControls.WebParts&quot;</span> <span class="kwrd">/&gt;</span>
    <span class="kwrd">&lt;/</span><span class="html">namespaces</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">tagMapping</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;</span><span class="html">add</span> <span class="attr">tagType</span><span class="kwrd">=&quot;System.Web.UI.WebControls.SqlDataSource, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&quot;</span> <span class="attr">mappedTagType</span><span class="kwrd">=&quot;Microsoft.<a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a>.WebControls.SPSqlDataSource, Microsoft.<a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a>, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c&quot;</span> <span class="kwrd">/&gt;</span>
    <span class="kwrd">&lt;/</span><span class="html">tagMapping</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;/</span><span class="html">pages</span><span class="kwrd">&gt;</span>
<span class="kwrd">&lt;</span><span class="html">siteMap</span> <span class="attr">defaultProvider</span><span class="kwrd">=&quot;SPSiteMapProvider&quot;</span> <span class="attr">enabled</span><span class="kwrd">=&quot;true&quot;</span><span class="kwrd">&gt;</span></pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</div>
<p>The error that we were getting in the trace logs is similar to below.</p>
<div style="border-right: #ccc 1px solid; border-top: #ccc 1px solid; overflow: auto; border-left: #ccc 1px solid; width: 100%; border-bottom: #ccc 1px solid; height: 50px">
<pre class="csharpcode">Exception Type: System.Web.HttpRequestValidationException  Exception Message: A potentially dangerous Request.Form value was detected from the client (ctl00$PlaceHolderDialogBodySection$ctl04$OriginalEntities=&quot;&lt;Entities /&gt;&quot;).</pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</div>
<p>via <a href="http://blog.solien.com/archive/2009/10/27/sharepoint-a-potentially-dangerous-request.form-value-was-detected-from-the.aspx" target="_blank">Solien Technology</a></p>

	Tags: <a href="http://sharepoint-geek.com/category/errors/" title="errors" rel="tag">errors</a>, <a href="http://sharepoint-geek.com/category/logs/" title="logs" rel="tag">logs</a>, <a href="http://sharepoint-geek.com/category/moss/" title="MOSS" rel="tag">MOSS</a>, <a href="http://sharepoint-geek.com/tag/sharepoint/" title="Sharepoint" rel="tag">Sharepoint</a>, <a href="http://sharepoint-geek.com/category/sharepoint-security/" title="sharepoint security" rel="tag">sharepoint security</a>, <a href="http://sharepoint-geek.com/tag/sql/" title="sql" rel="tag">sql</a>, <a href="http://sharepoint-geek.com/category/web-config/" title="web.config" rel="tag">web.config</a>, <a href="http://sharepoint-geek.com/category/wss/" title="wss" rel="tag">wss</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://sharepoint-geek.com/2009/11/05/sharepoint-alerts-not-working/" title="SharePoint Alerts Not Working (November 5, 2009)">SharePoint Alerts Not Working</a> (5)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wssremovefeaturefromsite-bat-file/" title="WssRemoveFeatureFromSite + BAT File (October 7, 2009)">WssRemoveFeatureFromSite + BAT File</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wss-v3-moss-2007-features/" title="WSS v3 &amp; MOSS 2007 Features (October 7, 2009)">WSS v3 &amp; MOSS 2007 Features</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/" title="Unable To Enable Office SharePoint Server Publishing (November 6, 2009)">Unable To Enable Office SharePoint Server Publishing</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/05/21/unable-to-activate-office-sharepoint-server-publishing-infrastructure/" title="Unable To Activate Office SharePoint Server Publishing Infrastructure (May 21, 2009)">Unable To Activate Office SharePoint Server Publishing Infrastructure</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sharepoint-geek.com/2010/01/07/a-potentially-dangerous-request-form-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable To Enable Office SharePoint Server Publishing</title>
		<link>http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/</link>
		<comments>http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 14:00:00 +0000</pubDate>
		<dc:creator>stewart</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Office SharePoint Server]]></category>
		<category><![CDATA[Publishing Provisioning]]></category>
		<category><![CDATA[activatefeature]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[stsadm]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/</guid>
		<description><![CDATA[Whenever I create a new MOSS site this is going to use the Office SharePoint Server Publishing feature I get an “Access Denied” error when I try enable it. So, I am finally posting the solution: stsadm -o activatefeature -name PublishingResources -url &#60;site&#62; *Be sure to include the &#8220;http://&#8221; in the &#60;site&#62; Hope this helps! [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I create a new <a href="http://sharepoint-geek.com/tag/moss/" class="st_tag internal_tag" rel="tag" title="Posts tagged with MOSS">MOSS</a> site this is going to use the Office <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Server Publishing feature I get an “Access Denied” error when I try enable it.</p>
<p>So, I am finally posting the solution:</p>
<pre class="csharpcode"><a href="http://sharepoint-geek.com/tag/stsadm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stsadm">stsadm</a> -o activatefeature -name PublishingResources -url &lt;site&gt;</pre>
<p>*Be sure to include the &#8220;http://&#8221; in the &lt;site&gt;</p>
<p>Hope this helps!</p>
<p><!--.csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } --></p>

	Tags: <a href="http://sharepoint-geek.com/category/activatefeature/" title="activatefeature" rel="tag">activatefeature</a>, <a href="http://sharepoint-geek.com/category/errors/" title="errors" rel="tag">errors</a>, <a href="http://sharepoint-geek.com/category/features/" title="features" rel="tag">features</a>, <a href="http://sharepoint-geek.com/category/moss/" title="MOSS" rel="tag">MOSS</a>, <a href="http://sharepoint-geek.com/tag/moss/" title="MOSS" rel="tag">MOSS</a>, <a href="http://sharepoint-geek.com/category/office-sharepoint-server/" title="Office SharePoint Server" rel="tag">Office SharePoint Server</a>, <a href="http://sharepoint-geek.com/category/publishing-provisioning/" title="Publishing Provisioning" rel="tag">Publishing Provisioning</a>, <a href="http://sharepoint-geek.com/tag/sharepoint/" title="Sharepoint" rel="tag">Sharepoint</a>, <a href="http://sharepoint-geek.com/category/stsadm/" title="stsadm" rel="tag">stsadm</a>, <a href="http://sharepoint-geek.com/tag/stsadm/" title="stsadm" rel="tag">stsadm</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://sharepoint-geek.com/2009/11/05/sharepoint-alerts-not-working/" title="SharePoint Alerts Not Working (November 5, 2009)">SharePoint Alerts Not Working</a> (5)</li>
	<li><a href="http://sharepoint-geek.com/2009/06/30/faulty-feature-tool/" title="Faulty Feature Tool (June 30, 2009)">Faulty Feature Tool</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wss-v3-moss-2007-features/" title="WSS v3 &amp; MOSS 2007 Features (October 7, 2009)">WSS v3 &amp; MOSS 2007 Features</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/05/21/unable-to-activate-office-sharepoint-server-publishing-infrastructure/" title="Unable To Activate Office SharePoint Server Publishing Infrastructure (May 21, 2009)">Unable To Activate Office SharePoint Server Publishing Infrastructure</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2010/02/24/find-checked-out-files/" title="Find Checked Out Files (February 24, 2010)">Find Checked Out Files</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error Running The Configuration Wizard</title>
		<link>http://sharepoint-geek.com/2009/10/22/error-running-the-configuration-wizard/</link>
		<comments>http://sharepoint-geek.com/2009/10/22/error-running-the-configuration-wizard/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 11:44:00 +0000</pubDate>
		<dc:creator>stewart</dc:creator>
				<category><![CDATA[External Collaboration Tool-Kit]]></category>
		<category><![CDATA[SharePoint Product & Technologies Configuration Wizard]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[wss]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[sharepoint services]]></category>

		<guid isPermaLink="false">http://sharepoint-geek.com/2009/10/22/error-running-the-configuration-wizard/</guid>
		<description><![CDATA[I installed a Windows SharePoint Services (WSS) Web Front End (WFE) onto an external server to be used for the External Collaboration Tool-Kit. Once I got it installed I ran the SharePoint Products &#38; Technologies Configuration Wizard and received the following error: Failed to register SharePoint services. The log pointed to several different registry keys [...]]]></description>
			<content:encoded><![CDATA[<p>I installed a Windows <a href="http://sharepoint-geek.com/tag/sharepoint-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sharepoint services">SharePoint Services</a> (<a href="http://sharepoint-geek.com/tag/wss/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wss">WSS</a>) Web Front End (WFE) onto an external server to be used for the <a href="http://technet.microsoft.com/en-us/library/cc268155.aspx">External Collaboration Tool-Kit</a>.</p>
<p>Once I got it installed I ran the <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Products &amp; Technologies Configuration Wizard and received the following error: </p>
<p style="text-indent: 20px">Failed to register <a href="http://sharepoint-geek.com/tag/sharepoint-services/" class="st_tag internal_tag" rel="tag" title="Posts tagged with sharepoint services">SharePoint services</a>.</p>
<p>The log pointed to several different registry keys located at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\12.0\<a href="http://sharepoint-geek.com/tag/wss/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wss">WSS</a>\Services.</p>
<p>I deleted everything under that location and it completed successfully.</p>

	Tags: <a href="http://sharepoint-geek.com/category/errors/" title="errors" rel="tag">errors</a>, <a href="http://sharepoint-geek.com/category/external-collaboration-tool-kit/" title="External Collaboration Tool-Kit" rel="tag">External Collaboration Tool-Kit</a>, <a href="http://sharepoint-geek.com/tag/sharepoint/" title="Sharepoint" rel="tag">Sharepoint</a>, <a href="http://sharepoint-geek.com/category/sharepoint-product-technologies-configuration-wizard/" title="SharePoint Product &amp; Technologies Configuration Wizard" rel="tag">SharePoint Product &amp; Technologies Configuration Wizard</a>, <a href="http://sharepoint-geek.com/tag/sharepoint-services/" title="sharepoint services" rel="tag">sharepoint services</a>, <a href="http://sharepoint-geek.com/category/wss/" title="wss" rel="tag">wss</a>, <a href="http://sharepoint-geek.com/tag/wss/" title="wss" rel="tag">wss</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://sharepoint-geek.com/2009/10/07/wssremovefeaturefromsite-bat-file/" title="WssRemoveFeatureFromSite + BAT File (October 7, 2009)">WssRemoveFeatureFromSite + BAT File</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wss-v3-moss-2007-features/" title="WSS v3 &amp; MOSS 2007 Features (October 7, 2009)">WSS v3 &amp; MOSS 2007 Features</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/11/04/stop-windows-sharepoint-services-web-application/" title="Stop Windows SharePoint Services Web Application (November 4, 2009)">Stop Windows SharePoint Services Web Application</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/05/21/sharepoint-search-services-error/" title="SharePoint Search Services Error (May 21, 2009)">SharePoint Search Services Error</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/11/05/sharepoint-alerts-not-working/" title="SharePoint Alerts Not Working (November 5, 2009)">SharePoint Alerts Not Working</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sharepoint-geek.com/2009/10/22/error-running-the-configuration-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Search Services Error</title>
		<link>http://sharepoint-geek.com/2009/05/21/sharepoint-search-services-error/</link>
		<comments>http://sharepoint-geek.com/2009/05/21/sharepoint-search-services-error/#comments</comments>
		<pubDate>Thu, 21 May 2009 22:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Office SharePoint Server]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[gatherer]]></category>
		<category><![CDATA[search services]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[sharepoint services]]></category>

		<guid isPermaLink="false">http://sharepoint-geek.com/spgeek/?p=7</guid>
		<description><![CDATA[One day, we noticed that our search was not working.&#160;&#160; Well really, one of the applications managers noticed that it wasn&#8217;t working.&#160; Anyway, we found the following errors in the event viewer on our SharePoint 2007 Server: Event Type:&#160;&#160;&#160;&#160;&#160; Warning Event Source:&#160;&#160;&#160;&#160;&#160; Windows SharePoint Services 3 Search Event Category:&#160;&#160;&#160;&#160;&#160; Gatherer Event ID:&#160;&#160;&#160;&#160;&#160; 2436 Date:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4/11/2009 [...]]]></description>
			<content:encoded><![CDATA[<p>One day, we noticed that our search was not working.&#160;&#160; Well really, one of the applications managers noticed that it wasn&#8217;t working.&#160; Anyway, we found the following errors in the event viewer on our <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> 2007 Server:</p>
<blockquote><p>Event Type:&#160;&#160;&#160;&#160;&#160; Warning     <br />Event Source:&#160;&#160;&#160;&#160;&#160; Windows <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Services 3 Search      <br />Event Category:&#160;&#160;&#160;&#160;&#160; Gatherer      <br />Event ID:&#160;&#160;&#160;&#160;&#160; 2436      <br />Date:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 4/11/2009      <br />Time:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 11:45:02 PM      <br />User:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; N/A      <br />Computer:&#160;&#160;&#160;&#160;&#160; &lt;servername&gt;      <br />Description:      <br />The start address &lt;{somesite}&gt; cannot be crawled.</p>
<p>Context: Application &#8216;Search index file on the search server&#8217;, Catalog &#8216;Search&#8217;</p>
<p>Details:     <br />Access is denied. Check that the Default Content Access Account has access to this content, or add a crawl rule to crawl this content.&#160;&#160; (0&#215;80041205) </p>
</blockquote>
<p>Apparently, this error was caused by a recent Microsoft Windows Update that was installed that affected the &quot;Loopback Check&quot; in order to make the system more secure. </p>
<p>In order for the <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Search Services to work we needed to add the following registry entry with a REG_DWORD value of 0&#215;00000001 (1):</p>
<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\DisableLoopbackCheck</p>
<p>Have you ran into this issue or one like it?</p>

	Tags: <a href="http://sharepoint-geek.com/category/errors/" title="errors" rel="tag">errors</a>, <a href="http://sharepoint-geek.com/category/gatherer/" title="gatherer" rel="tag">gatherer</a>, <a href="http://sharepoint-geek.com/category/moss/" title="MOSS" rel="tag">MOSS</a>, <a href="http://sharepoint-geek.com/category/office-sharepoint-server/" title="Office SharePoint Server" rel="tag">Office SharePoint Server</a>, <a href="http://sharepoint-geek.com/category/search-services/" title="search services" rel="tag">search services</a>, <a href="http://sharepoint-geek.com/tag/sharepoint/" title="Sharepoint" rel="tag">Sharepoint</a>, <a href="http://sharepoint-geek.com/tag/sharepoint-services/" title="sharepoint services" rel="tag">sharepoint services</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://sharepoint-geek.com/2009/11/04/stop-windows-sharepoint-services-web-application/" title="Stop Windows SharePoint Services Web Application (November 4, 2009)">Stop Windows SharePoint Services Web Application</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/22/error-running-the-configuration-wizard/" title="Error Running The Configuration Wizard (October 22, 2009)">Error Running The Configuration Wizard</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2010/01/04/an-update-conflict-has-occurred-and-you-must-re-try-this-action/" title="An update conflict has occurred, and you must re-try this action (January 4, 2010)">An update conflict has occurred, and you must re-try this action</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wssremovefeaturefromsite-bat-file/" title="WssRemoveFeatureFromSite + BAT File (October 7, 2009)">WssRemoveFeatureFromSite + BAT File</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wss-v3-moss-2007-features/" title="WSS v3 &amp; MOSS 2007 Features (October 7, 2009)">WSS v3 &amp; MOSS 2007 Features</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sharepoint-geek.com/2009/05/21/sharepoint-search-services-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable To Activate Office SharePoint Server Publishing Infrastructure</title>
		<link>http://sharepoint-geek.com/2009/05/21/unable-to-activate-office-sharepoint-server-publishing-infrastructure/</link>
		<comments>http://sharepoint-geek.com/2009/05/21/unable-to-activate-office-sharepoint-server-publishing-infrastructure/#comments</comments>
		<pubDate>Thu, 21 May 2009 17:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Office SharePoint Server]]></category>
		<category><![CDATA[Publishing Provisioning]]></category>
		<category><![CDATA[activatefeature]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[site collection]]></category>
		<category><![CDATA[stsadm]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://sharepoint-geek.com/spgeek/?p=6</guid>
		<description><![CDATA[When trying to enable the Office SharePoint Server Publishing Infrastructure feature we were getting an “Access Denied” error.&#160; The error in the application event log was: Event Type:&#160;&#160;&#160; Error Event Source:&#160;&#160;&#160; Office SharePoint Server Event Category:&#160;&#160;&#160; Publishing Provisioning Event ID:&#160;&#160;&#160; 4965 Date:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 5/13/2009 Time:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 10:16:31 AM User:&#160;&#160;&#160;&#160;&#160;&#160;&#160; N/A Computer:&#160;&#160;&#160; SERVERNAME Description: Event log message was: [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to enable the Office <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Server Publishing Infrastructure feature we were getting an “Access Denied” error.&#160; The error in the application event log was:</p>
<blockquote><p>Event Type:&#160;&#160;&#160; Error      <br />Event Source:&#160;&#160;&#160; Office <a href="http://sharepoint-geek.com/tag/sharepoint/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Sharepoint">SharePoint</a> Server       <br />Event Category:&#160;&#160;&#160; Publishing Provisioning       <br />Event ID:&#160;&#160;&#160; 4965       <br />Date:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 5/13/2009       <br />Time:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 10:16:31 AM       <br />User:&#160;&#160;&#160;&#160;&#160;&#160;&#160; N/A       <br />Computer:&#160;&#160;&#160; SERVERNAME       <br />Description:       <br />Event log message was: &#8216;Failed to provision the scheduling job definitions.&#160; Page scheduling will not succeed.&#8217;. Exception was: &#8216;System.Security.SecurityException: Access denied.       <br />…</p>
</blockquote>
<p>To resolve the issue, we took the following steps:</p>
<ol>
<li>Used <a href="http://sharepoint-geek.com/tag/stsadm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stsadm">stsadm</a> to activate the feature:
<ol>
<li><a href="http://sharepoint-geek.com/tag/stsadm/" class="st_tag internal_tag" rel="tag" title="Posts tagged with stsadm">stsadm</a> -o activatefeature -name PublishingResources -url <a href="http://www.example.com">http://www.example.com</a></li>
</ol>
</li>
<li>Clicked the [Activate] button on the Site Collection Features page. </li>
</ol>

	Tags: <a href="http://sharepoint-geek.com/category/activatefeature/" title="activatefeature" rel="tag">activatefeature</a>, <a href="http://sharepoint-geek.com/category/errors/" title="errors" rel="tag">errors</a>, <a href="http://sharepoint-geek.com/category/features/" title="features" rel="tag">features</a>, <a href="http://sharepoint-geek.com/category/moss/" title="MOSS" rel="tag">MOSS</a>, <a href="http://sharepoint-geek.com/category/office-sharepoint-server/" title="Office SharePoint Server" rel="tag">Office SharePoint Server</a>, <a href="http://sharepoint-geek.com/category/publishing-provisioning/" title="Publishing Provisioning" rel="tag">Publishing Provisioning</a>, <a href="http://sharepoint-geek.com/tag/sharepoint/" title="Sharepoint" rel="tag">Sharepoint</a>, <a href="http://sharepoint-geek.com/category/site-collection/" title="site collection" rel="tag">site collection</a>, <a href="http://sharepoint-geek.com/category/stsadm/" title="stsadm" rel="tag">stsadm</a>, <a href="http://sharepoint-geek.com/tag/stsadm/" title="stsadm" rel="tag">stsadm</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://sharepoint-geek.com/2009/11/06/unable-to-enable-office-sharepoint-server-publishing/" title="Unable To Enable Office SharePoint Server Publishing (November 6, 2009)">Unable To Enable Office SharePoint Server Publishing</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/11/05/sharepoint-alerts-not-working/" title="SharePoint Alerts Not Working (November 5, 2009)">SharePoint Alerts Not Working</a> (5)</li>
	<li><a href="http://sharepoint-geek.com/2009/06/30/faulty-feature-tool/" title="Faulty Feature Tool (June 30, 2009)">Faulty Feature Tool</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/12/11/change-central-admin-port/" title="Change Central Admin Port (December 11, 2009)">Change Central Admin Port</a> (0)</li>
	<li><a href="http://sharepoint-geek.com/2009/10/07/wssremovefeaturefromsite-bat-file/" title="WssRemoveFeatureFromSite + BAT File (October 7, 2009)">WssRemoveFeatureFromSite + BAT File</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://sharepoint-geek.com/2009/05/21/unable-to-activate-office-sharepoint-server-publishing-infrastructure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
