Installing Flex Wiki With WSS
Last changed: 207.230.217.31

.
Summary
How to install FlexWiki on a server running Windows SharePoint Services (WSS)

Many of the steps where taken from the Microsoft knowledgebase article 828810 - "How to enable an ASP.Net application to run on a SharePoint virtual server" http://support.microsoft.com/?id=828810

              ...
            </system.web>
          <location path="flexwiki" allowOverride="true"/>
        </configuration>
        <!-- Setup the PageHandlerFactory to process all requests. This will override the SharePoint HTTPHandler. -->
        <httpHandlers>
           <add verb="*" path="*.aspx" type="System.Web.UI.PageHandlerFactory, 
                System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
           </httpHandlers>
           <!-- Set the trust back to Full. WSS configures a very restrictive trust policy that 
                does not allow most applications to run correctly. -->
           <trust level="Full" originUrl="" />
           <!--
           Enable the modules that you must have for your program to run.
           If you receive the following message:
           Parser Error Message: The module '<moduleName>' is already in the program and cannot be added again
           You can remove the modules that are mentioned in the error message. The SharePoint web.config already 
           includes the module for OutputCache and WindowsAuthentication so you do not have to add them here.
           -->
            <httpModules>
              <add name="Session" type="System.Web.SessionState.SessionStateModule"/>
              <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule"/>
              <add name="PassportAuthentication" type="System.Web.Security.PassportAuthenticationModule"/>
              <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule"/>
              <add name="FileAuthorization" type="System.Web.Security.FileAuthorizationModule"/>
            </httpModules>
          </system.web>
        </configuration>