Update -
I now have the code in place, and the forum has not crashed this time. However, the user number remains at 1 for most users ever online!
For reference, I'm using 1.9.1.8
Here is my web config file: (note that the validation key was added to address the auto login problem)
Oh ya, my forum is at
http://www.dommagazine.net/yetanotherforum
__________________________________
<?xml version="1.0"?>
<configuration>
<configSections>
<section name="yafnet" type="yaf.SectionHandler,yaf"/>
<section name="rewriter" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
</configSections>
<yafnet configSource="yafnet.config"/>
<rewriter configSource="urlrewriter.config"/>
<system.web>
<httpModules>
<add type="Intelligencia.UrlRewriter.RewriterHttpModule,Intelligencia.UrlRewriter" name="UrlRewriter" />
</httpModules>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<compilation defaultLanguage="c#" debug="false"/>
<pages enableEventValidation="false" validateRequest="false" smartNavigation="false"/>
<authentication mode="Forms">
<forms loginUrl="~/login.aspx"
name=".YAFNET_Authentication"
protection="All"
timeout="43200"
cookieless="UseCookies"
path="/"
slidingExpiration="true"/>
</authentication>
<machineKey
validationKey="9881710368A4AAD80CF6C58C8DB88D7BE221106A999FFB3C64502769B2AEF16A7CDB68BBDDCE78B18EFD8E14448421E5F00E22E44CEC3F0E7F55C1DA5282BB4B"
decryptionKey="1F9F2E7E11E58259E1CC312AB1C05AE45F4032C9EA6B0B78"
validation="SHA1" decryption="AES"
/>
</system.web>
</configuration>