<?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 : Bug: Max Signature Size</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 : Bug: Max Signature Size]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 04:19:06 +0000</pubDate>
  <lastBuildDate>Fri, 21 Apr 2006 11:43:59 +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=19444</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[Bug: Max Signature Size : I have just checked in the code...]]></title>
   <link>https://forums.webwiz.net/bug-max-signature-size_topic19444_post105151.html#105151</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19444<br /><strong>Posted:</strong> 21&nbsp;April&nbsp;2006 at 11:43am<br /><br />I have just checked in the code and the above is correct.<br><br>the user can enter upto 200 characters in their signature, any BBCodes are then converted to HTML, then so that the database field doesn't return an error only the first 255 characters are allowed.<br><br>In 99.9% of circumstances this should work fine, you will only get this problem if you enter lots of links which are much shorter in BBcode.<br>]]>
   </description>
   <pubDate>Fri, 21 Apr 2006 11:43:59 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/bug-max-signature-size_topic19444_post105151.html#105151</guid>
  </item> 
  <item>
   <title><![CDATA[Bug: Max Signature Size :   I believe I actually set the...]]></title>
   <link>https://forums.webwiz.net/bug-max-signature-size_topic19444_post105119.html#105119</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19444<br /><strong>Posted:</strong> 21&nbsp;April&nbsp;2006 at 9:48am<br /><br />I believe I actually set the database up to do the chop at 255 characters.<br><br>The reason for this is database performance.<br><br>Most supported databases only allow 255 characters in a character column, any more than this and you need to use 'text', 'memo' etc. datatypes.<br><br>These datatypes that allow larger amount of text also use more database resources as an entire page with pointers etc. inside the database system itself have to be setup just for this one field, rather than all the tables columns being includes in one page. Which not only uses allot more space within the database to store this data but also means that queries on these fields are slower and more resource intensive.<br><span style="font-size:10px"><br /><br />Edited by -boRg- - 21&nbsp;April&nbsp;2006 at 11:41am</span>]]>
   </description>
   <pubDate>Fri, 21 Apr 2006 09:48:11 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/bug-max-signature-size_topic19444_post105119.html#105119</guid>
  </item> 
  <item>
   <title><![CDATA[Bug: Max Signature Size : That&amp;#039;s what I suspected because...]]></title>
   <link>https://forums.webwiz.net/bug-max-signature-size_topic19444_post105047.html#105047</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 19444<br /><strong>Posted:</strong> 20&nbsp;April&nbsp;2006 at 3:42pm<br /><br />That's what I suspected because when I went back to edit it, it showed HTML instead of BBCode for one of the links, the one that got chopped off in&nbsp;the middle. <DIV>&nbsp;</DIV><DIV>And when I viewed any posts with my chopped off signature, it broke all the tables because the last link was <table width="99%"><tr><td><pre class="BBcode"><FONT color=#0000ff>&lt;a href="http://www.cutoffdoma</FONT></pre></td></tr></table> which you will notice is missing the closing &gt; bracket, which screws up any page the signature is showed on.</DIV><DIV>&nbsp;</DIV><DIV>Perhaps you need to allow more than 200 characters in the database knowing that the BBCode gets converted to HTML.</DIV><DIV>&nbsp;</DIV><DIV>Example: <FONT color=#0000ff>&#091;url &#093;http://www.caribbeanchoice.com&#091;/url &#093;</FONT> seems to get converted to <FONT color=#0000ff>&#091; url=http://www.caribbeanchoice.com&#093;http://www.caribbeanchoice.com&#091;/url &#093; </FONT>which is twice as long and is saved in the database as <FONT color=#0000ff>&lt;a href="</FONT><a href="http://www.caribbeanchoice.com" target="_blank"><FONT color=#0000ff>http://www.caribbeanchoice.com</FONT></A><FONT color=#0000ff>" target="_blank"&gt;http://www.caribbeanchoice.com&lt;/a&gt;</FONT>.&nbsp; And if you have multiple links like that and they all do that, it is possible for one of the links to get cutoff mid-tag.</DIV><span style="font-size:10px"><br /><br />Edited by wistex - 20&nbsp;April&nbsp;2006 at 3:47pm</span>]]>
   </description>
   <pubDate>Thu, 20 Apr 2006 15:42:49 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/bug-max-signature-size_topic19444_post105047.html#105047</guid>
  </item> 
  <item>
   <title><![CDATA[Bug: Max Signature Size : Once the BBCode is converted into...]]></title>
   <link>https://forums.webwiz.net/bug-max-signature-size_topic19444_post105021.html#105021</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 19444<br /><strong>Posted:</strong> 20&nbsp;April&nbsp;2006 at 9:41am<br /><br />Once the BBCode is converted into HTML code it might pad up your signature to over 200 characters.]]>
   </description>
   <pubDate>Thu, 20 Apr 2006 09:41:53 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/bug-max-signature-size_topic19444_post105021.html#105021</guid>
  </item> 
  <item>
   <title><![CDATA[Bug: Max Signature Size : I just found something weird on...]]></title>
   <link>https://forums.webwiz.net/bug-max-signature-size_topic19444_post104969.html#104969</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=12115">wistex</a><br /><strong>Subject:</strong> 19444<br /><strong>Posted:</strong> 20&nbsp;April&nbsp;2006 at 3:15am<br /><br />I just found something weird on this site.&nbsp; I went into my profile and entered a signature just under 200 characters long (including BBCode).&nbsp; The message in the profile said it allowed 200 characters.&nbsp; However, when I previewed it, and when I saved it, it appeared to cut it off at approx. 150 characters.&nbsp; In fact, it orginally cut off the signature in the middle of a link tag, which screwed up any posts where I had posted (since the tag got cut off and was never closed).<DIV>&nbsp;</DIV><DIV>Perhaps it says 200 in one place and 150 in another?</DIV>]]>
   </description>
   <pubDate>Thu, 20 Apr 2006 03:15:44 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/bug-max-signature-size_topic19444_post104969.html#104969</guid>
  </item> 
 </channel>
</rss>