<?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 : Forum statistics</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 : Forum statistics]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 03:35:27 +0000</pubDate>
  <lastBuildDate>Fri, 11 Jan 2008 13:28:17 +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=25127</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[Forum statistics :   Finally I found what I was...]]></title>
   <link>https://forums.webwiz.net/forum-statistics_topic25127_post130663.html#130663</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=8945">dimoss</a><br /><strong>Subject:</strong> 25127<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2008 at 1:28pm<br /><br />Finally I found what I was looking for. I put it here for other also.<br>&lt;%<br>Dim rsForumStatsMod<br>Dim adoStatsModCon<br>Dim strStatsModCon<br>Dim strSQLStatsMod<br>Dim strStatsModForumPath<br>Dim intForumStatsTotalMembers<br>Dim intForumStatsTotalTopics<br>Dim intForumStatsTotalThreads<br>Dim intForumStatsTotalPosts<br><br>'The path to the forum<br>strStatsModForumPath = "/forum/"<br><br>'Default connection<br>strStatsModCon =&nbsp; "Provider=sqloledb;Data Source=xxx; User Id=xxx; Password=xxx; Database=xxx"<br><br>'Open connection. Makes it so access doesnt crash as much<br>Set adoStatsModCon = Server.CreateObject("ADODB.Connection")<br>adoStatsModCon.Open strStatsModCon<br><br>'Make the connection to display newest members<br>Set rsForumStatsMod = Server.CreateObject("ADODB.Recordset")<br><br>'Count Members<br>strSQLStatsMod = "SELECT Count(tblAuthor.Author_ID) AS Total_members FROM tblAuthor;"<br>rsForumStatsMod.Open strSQLStatsMod, adoStatsModCon<br>intForumStatsTotalMembers = Clng(rsForumStatsMod("Total_members"))<br>rsForumStatsMod.Close<br><br>'Count Topics<br>strSQLStatsMod = "SELECT Count(tblTopic.Topic_ID) AS Total_topics FROM tblTopic;"<br>rsForumStatsMod.Open strSQLStatsMod, adoStatsModCon<br>intForumStatsTotalTopics = Clng(rsForumStatsMod("Total_topics"))<br>rsForumStatsMod.Close<br><br>'Count Replies<br>strSQLStatsMod = "SELECT Count(tblThread.Thread_ID) AS Total_threads FROM tblThread;"<br>rsForumStatsMod.Open strSQLStatsMod, adoStatsModCon<br>intForumStatsTotalThreads = Clng(rsForumStatsMod("Total_threads") - intForumStatsTotalTopics)<br>rsForumStatsMod.Close<br><br>intForumStatsTotalPosts = intForumStatsTotalTopics + intForumStatsTotalThreads<br><br>Response.Write(vbCrLf &amp; "We have " &amp; "&lt;b&gt;" &amp; intForumStatsTotalMembers &amp; "&lt;/b&gt;" &amp; " members who have made " &amp; "&lt;b&gt;" &amp; intForumStatsTotalPosts &amp; "&lt;/b&gt;" &amp; " posts in total" &amp; "&lt;br&gt;" &amp; "(" &amp; intForumStatsTotalTopics &amp; " topics and " &amp; intForumStatsTotalThreads &amp; " replies)." &amp; "&amp;nbsp;")<br><br>'Reset Server Objects<br>Set rsForumStatsMod = Nothing<br>adoStatsModCon.Close<br>Set adoStatsModCon = Nothing<br>%&gt;<br><b><br>Post edited by admin as it contained the users database login username and password!</b><br><span style="font-size:10px"><br /><br />Edited by -boRg- - 11&nbsp;January&nbsp;2008 at 1:40pm</span>]]>
   </description>
   <pubDate>Fri, 11 Jan 2008 13:28:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-statistics_topic25127_post130663.html#130663</guid>
  </item> 
  <item>
   <title><![CDATA[Forum statistics : What he said is quite detail,...]]></title>
   <link>https://forums.webwiz.net/forum-statistics_topic25127_post130653.html#130653</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=19443">namtoday</a><br /><strong>Subject:</strong> 25127<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2008 at 2:45am<br /><br />What he said is quite detail, he wants a statistic module @ his own site. <br>The easiest way to do it, probably is you can go to default.asp page, and delete wherever webwizforum displays a forum (dont delete any SQL command).But it will probably alot slower compared with a code that speciallized in doing the job as it has to load almost the default page.<br>]]>
   </description>
   <pubDate>Fri, 11 Jan 2008 02:45:39 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-statistics_topic25127_post130653.html#130653</guid>
  </item> 
  <item>
   <title><![CDATA[Forum statistics : You will have to code a module...]]></title>
   <link>https://forums.webwiz.net/forum-statistics_topic25127_post130638.html#130638</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=26297">StarDust</a><br /><strong>Subject:</strong> 25127<br /><strong>Posted:</strong> 10&nbsp;January&nbsp;2008 at 3:51pm<br /><br />You will have to code a module to do that.<br><br>Tell me some more and i'll try to help you out.]]>
   </description>
   <pubDate>Thu, 10 Jan 2008 15:51:29 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-statistics_topic25127_post130638.html#130638</guid>
  </item> 
  <item>
   <title><![CDATA[Forum statistics :  Hi,Is it possible to put also...]]></title>
   <link>https://forums.webwiz.net/forum-statistics_topic25127_post130637.html#130637</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=8945">dimoss</a><br /><strong>Subject:</strong> 25127<br /><strong>Posted:</strong> 10&nbsp;January&nbsp;2008 at 2:46pm<br /><br />Hi,<br><br>Is it possible to put also the forum statistics which shows in the default.asp page in another page of my site? If yes, how?<br>Thanks,<br><br>Dimos<br>]]>
   </description>
   <pubDate>Thu, 10 Jan 2008 14:46:27 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-statistics_topic25127_post130637.html#130637</guid>
  </item> 
 </channel>
</rss>