<?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 : Guest Users, Table</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 : Guest Users, Table]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 10:12:29 +0000</pubDate>
  <lastBuildDate>Tue, 26 Oct 2004 08:45:40 +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=12313</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[Guest Users, Table : You can just replace the stars...]]></title>
   <link>https://forums.webwiz.net/guest-users-table_topic12313_post68255.html#68255</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 26&nbsp;October&nbsp;2004 at 8:45am<br /><br /><P>You can just replace the stars with something else in the admin area.</P>]]>
   </description>
   <pubDate>Tue, 26 Oct 2004 08:45:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/guest-users-table_topic12313_post68255.html#68255</guid>
  </item> 
  <item>
   <title><![CDATA[Guest Users, Table : erp- one more question: what&amp;#039;s...]]></title>
   <link>https://forums.webwiz.net/guest-users-table_topic12313_post68252.html#68252</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18042">randomcow</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 26&nbsp;October&nbsp;2004 at 6:22am<br /><br /><P>erp&nbsp;- one more question: what's the best way to get rid of the "stars" ranking system? Just replace the images with 1x1 clear pixels?</P><P>RC</P>]]>
   </description>
   <pubDate>Tue, 26 Oct 2004 06:22:23 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/guest-users-table_topic12313_post68252.html#68252</guid>
  </item> 
  <item>
   <title><![CDATA[Guest Users, Table : Actually, I managed to hack something...]]></title>
   <link>https://forums.webwiz.net/guest-users-table_topic12313_post68251.html#68251</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18042">randomcow</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 26&nbsp;October&nbsp;2004 at 6:20am<br /><br /><P>Actually, I managed to hack something together for the first part of my question above. It's a painful UNION ALL statement. The SELECT statement on 407 (??) of forum_topics needs to be changed toL</P><P><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp;strSQL = "SELECT " &amp; strDbTable &amp; "Thread.Thread_ID, " &amp; strDbTable &amp; "Thread.Author_ID, " &amp; strDbTable &amp; "Thread.Message, " &amp; strDbTable &amp; "Thread.Message_date, " &amp; strDbTable &amp; "Author.Username, " &amp; strDbTable &amp; "GuestName.Name "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "FROM " &amp; strDbTable &amp; "Author, " &amp; strDbTable &amp; "Thread, " &amp; strDbTable &amp; "GuestName "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "WHERE " &amp; strDbTable &amp; "Author.Author_ID = " &amp; strDbTable &amp; "Thread.Author_ID AND "&amp; strDbTable &amp; "GuestName.Thread_ID = " &amp; strDbTable &amp; "Thread.Thread_ID AND " &amp; strDbTable &amp; "Thread.Topic_ID = " &amp; lngTopicID &amp; " "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "UNION ALL "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "SELECT " &amp; strDbTable &amp; "Thread.Thread_ID, " &amp; strDbTable &amp; "Thread.Author_ID, " &amp; strDbTable &amp; "Thread.Message, " &amp; strDbTable &amp; "Thread.Message_date, " &amp; strDbTable &amp; "Author.Username, NULL "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "FROM " &amp; strDbTable &amp; "Author, " &amp; strDbTable &amp; "Thread "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "WHERE " &amp; strDbTable &amp; "Author.Author_ID = " &amp; strDbTable &amp; "Thread.Author_ID AND "&amp; strDbTable &amp; "Thread.Topic_ID = " &amp; lngTopicID &amp; " AND " &amp; strDbTable &amp; "Thread.Thread_ID NOT IN (SELECT thread_id from " &amp; strDbTable &amp; "GuestName) "<BR>&nbsp;&nbsp;&nbsp;strSQL = strSQL &amp; "ORDER BY " &amp; strDbTable &amp; "Thread.Message_date ASC;"</FONT></P><P>then this line:</P><P>strTopicStartUsername = rsTopic("Username")</P><P>&nbsp;</P><P>needs to be changed to </P><P>&nbsp;</P><P>&nbsp;&nbsp;&nbsp;If rsTopic("Username") = "Guests" Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;strTopicStartUsername = rsTopic("Name")<BR>&nbsp;&nbsp;&nbsp;Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;strTopicStartUsername = rsTopic("Username")<BR>&nbsp;&nbsp;&nbsp;End If</P><P>&nbsp;</P><P>Same for &nbsp;&nbsp;&nbsp;&nbsp;</P><P>&nbsp;</P><P>strLastEntryUsername= rsTopic("Username")</P><P>&nbsp;</P><P>which becomes</P><P>&nbsp;</P><P>&nbsp;&nbsp;&nbsp;If rsTopic("Username") = "Guests" Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;strLastEntryUsername= rsTopic("Name")<BR>&nbsp;&nbsp;&nbsp;Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;strLastEntryUsername= rsTopic("Username")<BR>&nbsp;&nbsp;&nbsp;End If</P><P>&nbsp;</P><P>There are still a few more places that I'd like to fix it, such as on the 'Last Post' section on the main screen, and down the bottom (ie "The Newest Forum Member is&nbsp;<A class=smLink href="java&#115;cript openWinpop_up_profile.asp?PF=2,profile,toolbar=0,locati&#111;n=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425" target="_blank">Guests</A> ")</P><P>Of course, if there is already a mod, it could save me a couple of hours... :)</P><P>&nbsp;&nbsp; RC</P>]]>
   </description>
   <pubDate>Tue, 26 Oct 2004 06:20:44 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/guest-users-table_topic12313_post68251.html#68251</guid>
  </item> 
  <item>
   <title><![CDATA[Guest Users, Table : Hi -  I&amp;#039;m currently customising...]]></title>
   <link>https://forums.webwiz.net/guest-users-table_topic12313_post68236.html#68236</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18042">randomcow</a><br /><strong>Subject:</strong> 12313<br /><strong>Posted:</strong> 25&nbsp;October&nbsp;2004 at 11:50pm<br /><br /><P>Hi - </P><P>I'm currently customising my forum (v7.8) to get it looking the way I want, so I'll probably be posting a bit more from now on.</P><P>Most of the queries I have had so far I have been able to find with the search, but here are two questions that I'm still having.</P><P>Firstly, my forum (health discussion) is going to have a lot of Guest users. People who a) can't be bothered logging in, or more importantly b) don't want to log in for privacy reasons. That's fine with me. However, when someone posts as a Guest, even though they enter a name, it appears as "Guest" on the forum_topics screen. Is there a way to modify this so that it actually shows their "username" that they entered previously? </P><P>Secondly, I want to put the entire forum into a table that is 750 pixels wide. Is there a way to do this through the config, because I can't find it. Otherwise, could someone please give me a pointer to where the code is? Thanks!</P><P>RC</P>]]>
   </description>
   <pubDate>Mon, 25 Oct 2004 23:50:37 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/guest-users-table_topic12313_post68236.html#68236</guid>
  </item> 
 </channel>
</rss>