<?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 : Active Topics not showing (again)</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 : Active Topics not showing (again)]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 21:09:24 +0000</pubDate>
  <lastBuildDate>Tue, 04 Jan 2005 05:53:56 +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=13184</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[Active Topics not showing (again) : I&amp;#039;ve started working on a...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73032.html#73032</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 04&nbsp;January&nbsp;2005 at 5:53am<br /><br />I've started working on a new system for version 8 that changes the waydates etc. are stored in &#099;ookies and used in pages like the activetopics page, so hopefully it will eleminate the CDate error on allservers.]]>
   </description>
   <pubDate>Tue, 04 Jan 2005 05:53:56 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73032.html#73032</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : Sorted using that mod - thanks...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73029.html#73029</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=5528">kbannon</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 04&nbsp;January&nbsp;2005 at 5:31am<br /><br />Sorted using that mod - thanks boRg.<DIV>Very strange how it decided to suddenly not work as there were no code/database or web server modifications at the time.</DIV>]]>
   </description>
   <pubDate>Tue, 04 Jan 2005 05:31:39 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73029.html#73029</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : Have a look at the following post...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73026.html#73026</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 04&nbsp;January&nbsp;2005 at 4:50am<br /><br />Have a look at the following post for a fix:-<br><br><a href="http://forums.webwiz.net/forum_posts.asp?TID=10338&amp;KW=active%5Ftopics%2Easp&amp;TPN=2" target="_blank"> http://forums.webwiz.net/forum_posts.asp?TID=10 338&amp;KW=active%5Ftopics%2Easp&amp;TPN=2 </a><br>]]>
   </description>
   <pubDate>Tue, 04 Jan 2005 04:50:12 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73026.html#73026</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : Had a look at the database - the...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73025.html#73025</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=5528">kbannon</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 04&nbsp;January&nbsp;2005 at 4:38am<br /><br />Had a look at the database - the active topics procedure looks OK. Im stumped!<BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"><DIV><FONT face="Courier New, Courier, mono">CREATE PROCEDURE &#091;dbo&#093;.&#091;wwfSpActiveTopics&#093;<BR>(<BR>@AuthorID int, <BR>@GroupID int, <BR>@GroupPerm int, <BR>@dblActiveFrom datetime<BR>)<BR>&nbsp;AS <BR>SELECT tblForum.Forum_name, tblForum.Password, tblForum.Forum_code, tblTopic.* <BR>FROM tblCategory, tblForum, tblTopic <BR>WHERE ((tblCategory.Cat_ID = tblForum.Cat_ID AND tblForum.Forum_ID = tblTopic.Forum_ID) AND (tblTopic.Last_entry_date &gt; GetDate() - @dblActiveFrom)) <BR>AND (tblForum.&#091;Read&#093; &lt;= @GroupPerm OR (tblTopic.Forum_ID IN (<BR>&nbsp;SELECT tblPermissions.Forum_ID <BR>&nbsp;FROM tblPermissions <BR>&nbsp;WHERE tblPermissions.Author_ID = @AuthorID OR tblPermissions.Group_ID = @GroupID AND tblPermissions.&#091;Read&#093;=1))<BR>&nbsp;)<BR>ORDER BY tblCategory.Cat_order ASC, tblForum.Forum_Order ASC, tblTopic.Last_entry_date DESC;</FONT></DIV></BLOCKQUOTE>]]>
   </description>
   <pubDate>Tue, 04 Jan 2005 04:38:58 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post73025.html#73025</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : changed it back to 1033 and still...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72995.html#72995</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=5528">kbannon</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 03&nbsp;January&nbsp;2005 at 3:59pm<br /><br />changed it back to 1033 and still no joy.<DIV>Also when I try running it from the backup asp files on my&nbsp;pc&nbsp;(via <A href="http://localhost" target="_blank">http://localhost</A>) which gets the threads etc. from a MS SQL database, the same problem exists indicating a database problem (possibly with the active topics stored procedure).</DIV>]]>
   </description>
   <pubDate>Mon, 03 Jan 2005 15:59:24 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72995.html#72995</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : One solution is on the active...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72962.html#72962</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 03&nbsp;January&nbsp;2005 at 5:46am<br /><br />One solution is on the active topics page at the top of the file is to change the LCID back to that of the server.<br><br>I have to do the same thing on this site to get the active topics to run.<br>]]>
   </description>
   <pubDate>Mon, 03 Jan 2005 05:46:42 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72962.html#72962</guid>
  </item> 
  <item>
   <title><![CDATA[Active Topics not showing (again) : in the last 24 hours my sites...]]></title>
   <link>https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72942.html#72942</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=5528">kbannon</a><br /><strong>Subject:</strong> 13184<br /><strong>Posted:</strong> 02&nbsp;January&nbsp;2005 at 4:40pm<br /><br />in the last 24 hours my sites active topics page is not loading if anything less than 'yesterday' is chosen (co-incidentally new years day!).<DIV>I know about setting the LCID which on mine is set to 2057 (UK) as the servers default is 1033 (USA). However, it has been running fine for several months now and just went belly up yesterday sometime.<BR>Any ideas?</DIV>]]>
   </description>
   <pubDate>Sun, 02 Jan 2005 16:40:41 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/active-topics-not-showing-again_topic13184_post72942.html#72942</guid>
  </item> 
 </channel>
</rss>