<?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>Jai's Sharepoint blog &#187; Central Administration</title>
	<atom:link href="http://sharepoint.jai-world.com/archives/tag/central-administration/feed" rel="self" type="application/rss+xml" />
	<link>http://sharepoint.jai-world.com</link>
	<description>SharePoint, as I like, dislike and admire!!</description>
	<lastBuildDate>Tue, 14 Jun 2011 10:44:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Forms Authentication using AspNetSqlMembershipProvider? &#8211; Some Tips</title>
		<link>http://sharepoint.jai-world.com/archives/7</link>
		<comments>http://sharepoint.jai-world.com/archives/7#comments</comments>
		<pubDate>Wed, 21 May 2008 11:00:05 +0000</pubDate>
		<dc:creator>jai</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AspNetSqlMembershipProvider]]></category>
		<category><![CDATA[Central Administration]]></category>
		<category><![CDATA[Forms Authentication]]></category>
		<category><![CDATA[Permissions]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://sharepoint.jai-world.com/?p=7</guid>
		<description><![CDATA[
After you configure your authentication provider for AspNetSqlMembershipProvider and modified your Central Admin web.config also, when you try to access the Central Admin, it will ask for the password and will not let you in. If you come across this problem, just make sure you modify the provider as follows:
&#60;roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider"&#62; &#60;providers&#62; &#60;add name="MyAspNetSqlRoleProvider" [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>After you configure your authentication provider for AspNetSqlMembershipProvider and modified your Central Admin web.config also, when you try to access the Central Admin, it will ask for the password and will not let you in. If you come across this problem, just make sure you modify the provider as follows:
<pre><span class="kwrd">&lt;</span><span class="html">roleManager </span><span class="attr">enabled</span><span class="kwrd">="true"</span> <strong><span style="#ff0000;"><span class="attr">defaultProvider</span><span class="kwrd">="AspNetWindowsTokenRoleProvider"</span></span></strong><span class="kwrd">&gt;</span> <span class="kwrd">&lt;</span><span class="html">providers</span><span class="kwrd">&gt;</span> <span class="kwrd">&lt;</span><span class="html">add</span> <span class="attr">name</span><span class="kwrd">="MyAspNetSqlRoleProvider"</span> <span class="attr">connectionStringName</span><span class="kwrd">="MOSSSqlServer"</span> <span class="attr">applicationName</span><span class="kwrd">="abcd"</span> <span class="attr">type</span><span class="kwrd">="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"</span> <span class="kwrd">/&gt;</span> <span class="kwrd">&lt;/</span><span class="html">providers</span><span class="kwrd">&gt;</span> <span class="kwrd">&lt;/</span><span class="html">roleManager</span><span class="kwrd">&gt;</span></pre>
</li>
<li>When you create the authentication provider database, make sure you give the ApplicationName other than &#8216;\&#8217;. This will help us to use the same database for multiple sites.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sharepoint.jai-world.com/archives/7/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The dreaded &#8216;Absolute path information required&#8217; &#8211; Some light in the darkness</title>
		<link>http://sharepoint.jai-world.com/archives/6</link>
		<comments>http://sharepoint.jai-world.com/archives/6#comments</comments>
		<pubDate>Sun, 18 May 2008 10:09:43 +0000</pubDate>
		<dc:creator>jai</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Application Tool]]></category>
		<category><![CDATA[Central Administration]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://sharepoint.jai-world.com/?p=6</guid>
		<description><![CDATA[I am one of the unfortunate ones who happened to come across the &#8216;Absolute path information required&#8217; three times. First it happened when I was playing around with MOSS first time. Secondly, it happened after I had gone live and third after I had deployed quite a handful of sites.
Problem: After you created a new [...]]]></description>
			<content:encoded><![CDATA[<p>I am one of the unfortunate ones who happened to come across the &#8216;Absolute path information required&#8217; three times. First it happened when I was playing around with MOSS first time. Secondly, it happened after I had gone live and third after I had deployed quite a handful of sites.</p>
<p>Problem: After you created a new web application (and gave a wrong path for the IIS virtual directory), anything you do on the Central Admin -&gt; Application Management would throw a &#8216;Absolute path information required&#8217;. Strangely Microsoft has not released any tool kit / fixes for this yet.</p>
<p>Fix(?): This happens because of an invalid entry created in the Config database and this affects any operation on the Web Applications list. However, this doesn&#8217;t create any problems on the current sites, though you cannot touch them. After enough &#8216;googling&#8217;, the following solutions were seen:</p>
<p>1. Re-install the whole server farm!!!!! &#8211; phew! a nightmare and last thing you want after your deployment</p>
<p>2. Restore the last working Config database &#8211; reasonable, but then you don&#8217;t want to mess up with the configuration.</p>
<p>3. Use the SharePoint object model, do some digging and remove the invalid application from the database. After two experiences, this is what I did for the third time and it worked like magic!</p>
<p>I am putting up the same here. Anybody who is in this situation now can download this and try. My application is quite simple and hence doesn&#8217;t have any readme! I have also put the source in case you want to customize it.</p>
<p>Executable: <a title="SharePointTools.zip" href="http://sharepoint.jai-world.com/files/Tools/SharePointTools.zip">SharePointTools.zip</a></p>
<p>Source: <a title="SharePointToolsSrc.zip" href="http://sharepoint.jai-world.com/files/Tools/SharePointToolsSrc.zip">SharePointToolsSrc.zip</a></p>
<p><strong>To Run:</strong></p>
<p>You need to copy the executable to the server. This application currently cannot retrieve details using a path.</p>
<p><strong>To modify the code:</strong></p>
<p>Install the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=6D94E307-67D9-41AC-B2D6-0074D6286FA9&amp;displaylang=en" target="_blank">SharePoint Server 2007 SDK</a> and open the source in VS 2005.</p>
<p>Thanks to <a href="http://blogs.msdn.com/sowmyancs/archive/2008/04/02/exception-absolute-path-information-is-required.aspx" target="_blank">Soumyan</a> for this idea.</p>
<p><strong>Note:</strong></p>
<p><em>I don&#8217;t claim this to work for anybody and everybody <img src='http://sharepoint.jai-world.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . It worked for me, if it can help you, it would be great! Take a backup of your existing setup before you try this, please. This piece of software is given as, is without any warranties.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://sharepoint.jai-world.com/archives/6/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

