<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : HELP!!!</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : HELP!!!]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 09 Apr 2026 02:57:20 +0000</pubDate>
  <lastBuildDate>Sun, 03 Sep 2006 11:26:07 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=20872</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[HELP!!! :    slayer051 wrote:Its work...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post113529.html#113529</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 03&nbsp;September&nbsp;2006 at 11:26am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by slayer051" alt="Originally posted by slayer051" style="vertical-align: text-bottom;" /> <strong>slayer051 wrote:</strong><br /><br />Its work great but when many users some time I get this error</td></tr></table><br><br>If this only happens when you get allot of users on your forum it means that Access is at it's connection limits.<br><br>MS Access is only a flat office desktop file and can NOT cope with many connections (usually 20 shared with all Access databases on the entire web server).<br><br>If you expect more than a handful of users per day you need to be running the mySQL or SQL Server versions as these are Database Management Systems (DBMS) rather than a desktop file so can handle many 1000's of simultaneous users.<br>]]>
   </description>
   <pubDate>Sun, 03 Sep 2006 11:26:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post113529.html#113529</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : Moved to Support forum!Just a...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post113502.html#113502</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12748">Mikey</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 02&nbsp;September&nbsp;2006 at 5:29pm<br /><br /><b><font color="#ff0000">Moved to Support forum!<br><br></font></b><font color="#000000">Just a side note</font><b><font color="#ff0000"> </font></b><a href="member_profile.asp?PF=24353&amp;FID=20" target="_blank">slayer051</a>, when you post a support question it's a better idea to use a descriptive title instead of just 'HELP!!!' this will help your question get answered and hopefully resolved much quicker!<br>Just something to bear in mind for the future <img src="https://forums.webwiz.net/smileys/smiley20.gif" border="0" align="absmiddle"><br>]]>
   </description>
   <pubDate>Sat, 02 Sep 2006 17:29:02 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post113502.html#113502</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : Common.asp setup just let me know...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111924.html#111924</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24353">slayer051</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 02&nbsp;August&nbsp;2006 at 4:43am<br /><br />Common.asp setup just let me know if this is ok <br><br>'Set the timeout of the forum<br>Server.ScriptTimeout = 90<br>Session.Timeout = 20<br><br>'Set the date time format to your own locale if you are getting a CDATE error<br>'(this shouldn't ever be required in version 8 or above, but left in for backward compatibility)<br>'Session.LCID = 1033<br>]]>
   </description>
   <pubDate>Wed, 02 Aug 2006 04:43:14 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111924.html#111924</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : At this point then, I&amp;#039;d check...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111919.html#111919</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9949">dpyers</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 02&nbsp;August&nbsp;2006 at 1:36am<br /><br />At this point then, I'd check to make sure that any add-on/mod code was properly closing db connections, and that I was using the right mdac/ado version for the forums. I think you need mdac 2.8 - check the install directions to find out exactly.<br><br>If your mdac is ok, and your connections are not being left open, then you've probably exceeded the number of users you can habdle with an access db on that host.<br><br>The mdac thing is probably a long shot though - I think you'd see failures with less users if it was an invalid mdac. the following asp code can check your mdac/ado versionL<br><br>dim objAdoVer<br>Set objAdoVer = Server.CreateObject("adodb.connection")<br>response.write "ADOVersion = " &amp; objAdoVer.Version<br>Set objAdoVer = Nothing<br><br>]]>
   </description>
   <pubDate>Wed, 02 Aug 2006 01:36:24 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111919.html#111919</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! :   Any easy idea to fix this...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111911.html#111911</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24353">slayer051</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 01&nbsp;August&nbsp;2006 at 10:12pm<br /><br /><p ="Ms&#111;normal"><span style="">Any easy idea to fixthis problem???? I can't access the registry. <o:p></o:p></span></p>]]>
   </description>
   <pubDate>Tue, 01 Aug 2006 22:12:02 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111911.html#111911</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : http://aspfaq.com/show.asp?id=2009 ...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111866.html#111866</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9949">dpyers</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 01&nbsp;August&nbsp;2006 at 4:49am<br /><br /><a href="http://aspfaq.com/show.asp?id=2009" target="_blank">http://aspfaq.com/show.asp?id=2009</a>]]>
   </description>
   <pubDate>Tue, 01 Aug 2006 04:49:39 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111866.html#111866</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : Its work great but when many users...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111864.html#111864</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24353">slayer051</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 01&nbsp;August&nbsp;2006 at 3:27am<br /><br />Its work great but when many users some time I get this error]]>
   </description>
   <pubDate>Tue, 01 Aug 2006 03:27:56 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111864.html#111864</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! :   dpyers wrote:Looks like your...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111858.html#111858</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=19827">dfrancis</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 31&nbsp;July&nbsp;2006 at 11:03pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by dpyers" alt="Originally posted by dpyers" style="vertical-align: text-bottom;" /> <strong>dpyers wrote:</strong><br /><br />Looks like your connection string may be set up with extra or missing quote characters</td></tr></table> <DIV>&nbsp;</DIV><DIV>now that's just freaky</DIV>]]>
   </description>
   <pubDate>Mon, 31 Jul 2006 23:03:36 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111858.html#111858</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! : Looks like your connection string...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111855.html#111855</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9949">dpyers</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 31&nbsp;July&nbsp;2006 at 9:54pm<br /><br />Looks like your connection string may be set up with extra or missing quote characters]]>
   </description>
   <pubDate>Mon, 31 Jul 2006 21:54:04 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111855.html#111855</guid>
  </item> 
  <item>
   <title><![CDATA[HELP!!! :     I have this error on my forum...]]></title>
   <link>https://forums.webwiz.net/help_topic20872_post111851.html#111851</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=24353">slayer051</a><br /><strong>Subject:</strong> 20872<br /><strong>Posted:</strong> 31&nbsp;July&nbsp;2006 at 8:21pm<br /><br />   I have this error on my forum please help!!<br><br><br><strong>Server Error in Forum Application</strong><br>An error has occured while connecting to the database.<br>Please contact the forum administrator.<br><br><strong>Support Error Code:-</strong> err_Access_db_connection<br><strong>File Name:-</strong> common.asp<br><br><strong>Error details:-</strong><br>Microsoft JET Database Engine<br>Could not use ''; file already in use.]]>
   </description>
   <pubDate>Mon, 31 Jul 2006 20:21:56 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help_topic20872_post111851.html#111851</guid>
  </item> 
 </channel>
</rss>