<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: MOSS Site Templates Not Compatible With WSS</title>
	<atom:link href="http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/</link>
	<description>Ari Bakker&#039;s thoughts on customising and configuring SharePoint 2007 and 2010</description>
	<lastBuildDate>Thu, 02 Feb 2012 22:08:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Feature differences between SharePoint 2007 Enterprise and Standard for a Publishing Portal &#124; merill.net</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-491</link>
		<dc:creator>Feature differences between SharePoint 2007 Enterprise and Standard for a Publishing Portal &#124; merill.net</dc:creator>
		<pubDate>Mon, 03 May 2010 23:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-491</guid>
		<description>[...] I received the &#8216;The template you have chosen is invalid or cannot be found&#8217;. Unlike a MOSS to WSS conversion the problem here is that the features do exist on the server but are simply not available for the [...]</description>
		<content:encoded><![CDATA[<p>[...] I received the &#8216;The template you have chosen is invalid or cannot be found&#8217;. Unlike a MOSS to WSS conversion the problem here is that the features do exist on the server but are simply not available for the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rüya tabiri</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-119</link>
		<dc:creator>rüya tabiri</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-119</guid>
		<description>Thank you...</description>
		<content:encoded><![CDATA[<p>Thank you&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sjoerd</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-120</link>
		<dc:creator>Sjoerd</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-120</guid>
		<description>in my case I also had to delete the &lt;SiteFeatures&gt; node in the manifest.xml

          I use cab maker to create the cab files easily:
          http://www.tonysfreeware.com/download.htm</description>
		<content:encoded><![CDATA[<p>in my case I also had to delete the &lt;SiteFeatures&gt; node in the manifest.xml</p>
<p>          I use cab maker to create the cab files easily:<br />
          <a href="http://www.tonysfreeware.com/download.htm" rel="nofollow">http://www.tonysfreeware.com/download.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morgan</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-121</link>
		<dc:creator>Morgan</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-121</guid>
		<description>I got that same error, but after struggling for ages I found I needed to have all the features of the site that I copied enabled on my target site.  That solved it for me.</description>
		<content:encoded><![CDATA[<p>I got that same error, but after struggling for ages I found I needed to have all the features of the site that I copied enabled on my target site.  That solved it for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-122</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-122</guid>
		<description>I received the same error message under different circumstances.  In my case I was creating a new Site Definition by copying an existing site definition and modifying the XML.

          I learned that you need to be very careful to avoid conflicts with IDs already used in Windows SharePoint Services.  It is suggested to use UNIQUE values greater than 10,000 for the ID attribute.

          In my case my XML looked like this:

          &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
          &lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;
          &lt;Template Name=&quot;SAMPLE&quot; ID=&quot;10001&quot;&gt;
          &lt;Configuration ID=&quot;0&quot; Title=&quot;Sample Site&quot; Hidden=&quot;FALSE&quot; ImageUrl=&quot;/_layouts/images/stsprev.png&quot; Description=&quot;Blah blah blah.&quot; DisplayCategory=&quot;Custom Site Definitions&quot; &gt; &lt;/Configuration&gt;
          &lt;/Template&gt;
          &lt;/Templates&gt;

          By changing the ID to 10004 the problem went away.  I didn&#039;t realize, or had forgotten, that I had used the ID of 10001 previously for another template.  My correct XML was:

          &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
          &lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;
          &lt;Template Name=&quot;SAMPLE&quot; ID=&quot;10004&quot;&gt;
          &lt;Configuration ID=&quot;0&quot; Title=&quot;Sample Site&quot; Hidden=&quot;FALSE&quot; ImageUrl=&quot;/_layouts/images/stsprev.png&quot; Description=&quot;Blah blah blah.&quot; DisplayCategory=&quot;Custom Site Definitions&quot; &gt; &lt;/Configuration&gt;
          &lt;/Template&gt;
          &lt;/Templates&gt;

          The next template I create will have an ID of 10005, the one after that 10006, etc.......</description>
		<content:encoded><![CDATA[<p>I received the same error message under different circumstances.  In my case I was creating a new Site Definition by copying an existing site definition and modifying the XML.</p>
<p>          I learned that you need to be very careful to avoid conflicts with IDs already used in Windows SharePoint Services.  It is suggested to use UNIQUE values greater than 10,000 for the ID attribute.</p>
<p>          In my case my XML looked like this:</p>
<p>          &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
          &lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;<br />
          &lt;Template Name=&quot;SAMPLE&quot; ID=&quot;10001&quot;&gt;<br />
          &lt;Configuration ID=&quot;0&quot; Title=&quot;Sample Site&quot; Hidden=&quot;FALSE&quot; ImageUrl=&quot;/_layouts/images/stsprev.png&quot; Description=&quot;Blah blah blah.&quot; DisplayCategory=&quot;Custom Site Definitions&quot; &gt; &lt;/Configuration&gt;<br />
          &lt;/Template&gt;<br />
          &lt;/Templates&gt;</p>
<p>          By changing the ID to 10004 the problem went away.  I didn&#39;t realize, or had forgotten, that I had used the ID of 10001 previously for another template.  My correct XML was:</p>
<p>          &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
          &lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;<br />
          &lt;Template Name=&quot;SAMPLE&quot; ID=&quot;10004&quot;&gt;<br />
          &lt;Configuration ID=&quot;0&quot; Title=&quot;Sample Site&quot; Hidden=&quot;FALSE&quot; ImageUrl=&quot;/_layouts/images/stsprev.png&quot; Description=&quot;Blah blah blah.&quot; DisplayCategory=&quot;Custom Site Definitions&quot; &gt; &lt;/Configuration&gt;<br />
          &lt;/Template&gt;<br />
          &lt;/Templates&gt;</p>
<p>          The next template I create will have an ID of 10005, the one after that 10006, etc&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Backway</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-123</link>
		<dc:creator>Andrew Backway</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-123</guid>
		<description>Hi Guys,

          Just stumbled across the same problem, found a workaround though. The following outlines the process of removing the features WSS does not support.

          1) Rename the stp to a cab file, extract the files.
          2) Open manifest.xml
          3) Remove the nodes WorkflowAssociations
          4) Export a site template from the WSS site, extract mainfest.xml and copy the WebFeatures element (and its children) into the MOSS manifest.xml file (by replacing the existing).
          5) Package the item up again, and upload to the site.

          The majority of elements work, you may have some qwirks in views not displaying. I&#039;ve found that resaving these items fixes the problem.

          Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>          Just stumbled across the same problem, found a workaround though. The following outlines the process of removing the features WSS does not support.</p>
<p>          1) Rename the stp to a cab file, extract the files.<br />
          2) Open manifest.xml<br />
          3) Remove the nodes WorkflowAssociations<br />
          4) Export a site template from the WSS site, extract mainfest.xml and copy the WebFeatures element (and its children) into the MOSS manifest.xml file (by replacing the existing).<br />
          5) Package the item up again, and upload to the site.</p>
<p>          The majority of elements work, you may have some qwirks in views not displaying. I&#39;ve found that resaving these items fixes the problem.</p>
<p>          Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ari Bakker</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-124</link>
		<dc:creator>Ari Bakker</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-124</guid>
		<description>To save a site as a template simply navigate to &#039;Site Settings &gt; Look and Feel - Save Site as Template&#039;. If the option does not show up on the site settings page you can browse to http://siteurl/_layouts/savetmpl.aspx to get to the save template page.</description>
		<content:encoded><![CDATA[<p>To save a site as a template simply navigate to &#39;Site Settings &gt; Look and Feel &#8211; Save Site as Template&#39;. If the option does not show up on the site settings page you can browse to <a href="http://siteurl/_layouts/savetmpl.aspx" rel="nofollow">http://siteurl/_layouts/savetmpl.aspx</a> to get to the save template page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-125</link>
		<dc:creator>Brent</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-125</guid>
		<description>I think there are lot of very interesting uses for the Telerik UI controls (and similar ASP.NET controls from Infragistics and Component Art).  I spoke with Andrew Connell at TechEd and he is writing a whitepaper on how to use their various controls with SharePoint 2007 and it should be coming out shortly.</description>
		<content:encoded><![CDATA[<p>I think there are lot of very interesting uses for the Telerik UI controls (and similar ASP.NET controls from Infragistics and Component Art).  I spoke with Andrew Connell at TechEd and he is writing a whitepaper on how to use their various controls with SharePoint 2007 and it should be coming out shortly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiktor</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-126</link>
		<dc:creator>Wiktor</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-126</guid>
		<description>In my case adding all the features from the original site solved the issue. For some reason I was stupid enough to think they would migrate together with site template :)</description>
		<content:encoded><![CDATA[<p>In my case adding all the features from the original site solved the issue. For some reason I was stupid enough to think they would migrate together with site template <img src='http://www.sharepointconfig.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohbet Chat Arkadaslik</title>
		<link>http://www.sharepointconfig.com/2007/05/moss-site-templates-not-compatible-with-wss/comment-page-1/#comment-127</link>
		<dc:creator>Sohbet Chat Arkadaslik</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=25#comment-127</guid>
		<description>Eywallah kardes...</description>
		<content:encoded><![CDATA[<p>Eywallah kardes&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

