<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: wp_rg_lead_detail too small</title>
		<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small</link>
		<description>Gravity Support Forums Topic: wp_rg_lead_detail too small</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 12:03:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/wp_rg_lead_detail-too-small" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-40580</link>
			<pubDate>Wed, 09 Nov 2011 10:39:40 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">40580@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Bjørn, please send an email to &#60;a href=&#34;mailto:alex@rocketgenius.com&#34;&#62;alex@rocketgenius.com&#60;/a&#62; and reference this topic and your reply.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bjørn Børresen on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-40578</link>
			<pubDate>Wed, 09 Nov 2011 10:38:01 +0000</pubDate>
			<dc:creator>Bjørn Børresen</dc:creator>
			<guid isPermaLink="false">40578@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Alex, I'm also having issues with this. Could you send this update to me as well?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valleyinternet on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-39889</link>
			<pubDate>Thu, 03 Nov 2011 13:06:21 +0000</pubDate>
			<dc:creator>valleyinternet</dc:creator>
			<guid isPermaLink="false">39889@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sent, tx Alex!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-39864</link>
			<pubDate>Thu, 03 Nov 2011 11:11:29 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">39864@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok. Now I understand what is going on. There was actually a problem with the position of the gform_save_field_value filter that prevented it from accepting values greater than 200 characters. I have made an adjustment and it looks like it will work OK for you. Please email me to &#60;a href=&#34;mailto:alex@rocketgenius.com&#34;&#62;alex@rocketgenius.com&#60;/a&#62; and I will send it your way.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valleyinternet on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-39803</link>
			<pubDate>Wed, 02 Nov 2011 23:54:26 +0000</pubDate>
			<dc:creator>valleyinternet</dc:creator>
			<guid isPermaLink="false">39803@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using the hook as below. When I use this the detail is NOT updated. We get no detail entries.&#60;/p&#62;
&#60;p&#62;Here is our hook function.&#60;/p&#62;
&#60;p&#62;----&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
function save_field_value($value, $lead, $field){
	if($field[&#38;#39;adminLabel&#38;#39;] == $SPECIALFIELDNAME){
		require_once &#38;#39;Crypt/GPG.php&#38;#39;;
		$gpg = new Crypt_GPG(array(&#38;#39;homedir&#38;#39; =&#38;gt; $KEYDIR, &#38;#39;debug&#38;#39; =&#38;gt; false));
		$gpg-&#38;gt;addEncryptKey($KEYNAME);
		$encrypted = $gpg-&#38;gt;encrypt($value);
		return $encrypted;

	} else {
		return $value;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;----
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-38796</link>
			<pubDate>Mon, 24 Oct 2011 14:32:44 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">38796@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Entries get into the wp_rg_lead_detail_long table when they exceed 200 characters. Gravity Forms stores the first 200 characters in the wp_rg_lead_detail table and if the submitted value is larger than 200 characters, the full value is stored in the wp_rg_lead_detail_long table. So the wp_rg_lead_detail_long table will only have entries when needed.&#60;br /&#62;
All of that should be transparent to you though. When you access the $entry object within one of our hooks, it should give you the full value of the field (it will get it from the wp_rg_lead_detail_long table if needed).&#60;br /&#62;
How exactly are you storing these encrypted fields? Are you inserting them manually or are they fields in the form? How are you reading the encrypted value? Which hook(s) are you using?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valleyinternet on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-38792</link>
			<pubDate>Mon, 24 Oct 2011 14:07:29 +0000</pubDate>
			<dc:creator>valleyinternet</dc:creator>
			<guid isPermaLink="false">38792@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to access 'wp_rg_lead_detail_long' within the notification? &#60;/p&#62;
&#60;p&#62;When I check wp_rg_lead_detail_long it is empty. How do entries get into this table?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-38737</link>
			<pubDate>Mon, 24 Oct 2011 11:41:26 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">38737@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The reason for the 200 character limit was for speed in loading the entries in the admin.   If it works for you, it works.&#60;/p&#62;
&#60;p&#62;There is also a wp_rg_lead_detail_long for the full entry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>valleyinternet on "wp_rg_lead_detail too small"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/wp_rg_lead_detail-too-small#post-38668</link>
			<pubDate>Sun, 23 Oct 2011 01:21:27 +0000</pubDate>
			<dc:creator>valleyinternet</dc:creator>
			<guid isPermaLink="false">38668@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;We are encrypting information and letting GF store it. However the 200 varchar limit breaks GPG output since its always going to be larger then that. Two questions:&#60;/p&#62;
&#60;p&#62;1) Why the tight limit? Was it a setup option I missed?&#60;/p&#62;
&#60;p&#62;2) Our fix was modifying the table: alter table wp_rg_lead_detail modify value varchar(2048);&#60;br /&#62;
     Any concerns with this? &#60;/p&#62;
&#60;p&#62;Thx for the API, made my life way better today!&#60;/p&#62;
&#60;p&#62;John-
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
