btw
here's my web config file....do I have something wrong here?
<!-- Web.Config Configuration File -->
<configuration>
<appSettings>
<!-- Enter Key as provided -->
<add key="LNK-KEY" value="" />
<!-- Place where Dic folder is located -->
<add key="mailyoulike" value="dic" />
<!-- Enter 1 for MS ACCESS and 2 for MS SQL -->
<add key="dbtype" value="2" />
<!-- Enter Name of Virtual Folder - PUT / AT THE BEGIINING ( IF YOU HAVE UPLOADED FILES TO THE ROOT THEN DO NOT PUT / ) -->
<add key="vfolder" value="http://www.intheplace.com/mailyoulike" />
<!-- Enter Name of MS ACCESS Database -->
<add key="db_name" value="mailyoulike/db/Access/mylv3.mdb" />
<!-- Enter Login info for MS SQL Database if dbtype = 2 -->
<add key="sComputerName" value="http://www.intheplace.com" />
<add key="sDBName" value="Mailyoulike" />
<add key="sUserName" value="********" />
<add key="sPassword" value="**********" />
</appSettings>
<runtime>
<gcConcurrent enabled="true" />
</runtime>
<system.web>
<compilation debug="true" batch="false" batchTimeout="15" defaultLanguage="VB" explicit="true" maxBatchSize="1000" maxBatchGeneratedFileSize="3000" numRecompilesBeforeAppRestart="15" strict="false" />
<!-- Enter customErrors mode="Off" to hide error from user -->
<!-- If a Error occur redirect user to a page -->
<customErrors mode="On" defaultRedirect="ErrDefault.htm">
<error statusCode="401" redirect="ErrUnauthorized.htm" />
<error statusCode="404" redirect="ErrPageNotFound.htm" />
<error statusCode="500" redirect="ErrServer.htm" />
</customErrors>
<!-- change timeout in seconds from : executionTimeout="90" -->
<!-- change Maximum Upload size in bytes : maxRequestLength="10240" -->
<httpRuntime useFullyQualifiedRedirectUrl="false" maxRequestLength="10240" executionTimeout="90" minFreeThreads="8" appRequestQueueLimit="100" minLocalRequestFreeThreads="4" />
<pages validateRequest="false" />
<authentication mode= "Forms">
<forms name=".ASPXAUTH" loginUrl="My_Login.aspx" />
</authentication>
</system.web>
</configuration>