Upgrading Community Server 2.x to 2007 with applications unders the main folder
If you are like me and have applications running in paths under Community Server you will need to update your web.config again when you upgrade from 2.x to 2007.
Here are the changes between a 2.0 and 2007 installation.
1. Remove the references to http modules removed.
Before:
<system.web>
<httpModules>
<remove name="CommunityServer" />
<remove name="CSProfile"/>
<remove name="CSRoleManager" />
</httpModules>
After:
<system.web>
<httpModules>
<remove name="CommunityServer" />
</httpModules>
2. Copy the following assemblies to the bin directory of all of your applications along with the assemblies for 2.x.
CommunityServer.ASPNet20MemberRole.dll
CommunityServer.Blogs.dll
CommunityServer.Components.dll
You are off and running again. No problem at all.