<?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: form suddenly stops saving created form data</title>
		<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data</link>
		<description>Gravity Support Forums Topic: form suddenly stops saving created form data</description>
		<language>en-US</language>
		<pubDate>Wed, 15 Apr 2026 02:12:04 +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/form-suddenly-stops-saving-created-form-data" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-97843</link>
			<pubDate>Sat, 01 Dec 2012 23:49:17 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97843@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here is a good explanation of how action hooks and filters are different:&#60;br /&#62;
&#60;a href=&#34;http://ottopress.com/2011/actions-and-filters-are-not-the-same-thing/&#34; rel=&#34;nofollow&#34;&#62;http://ottopress.com/2011/actions-and-filters-are-not-the-same-thing/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I see you're setting the global $_POST in your code. I've never seen that in a gform_pre_submission_filter function.  What is the purpose of that?&#60;/p&#62;
&#60;p&#62;Also, when using the gform_pre_submission_filter, you should return the modified $form object.  I don't see you modifying the $form object at all, much less returning it.&#60;/p&#62;
&#60;p&#62;Maybe you want to use the gform_pre_submission action hook instead?  They're used differently.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yammy on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-97747</link>
			<pubDate>Sat, 01 Dec 2012 11:26:53 +0000</pubDate>
			<dc:creator>yammy</dc:creator>
			<guid isPermaLink="false">97747@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You don't need the form. The error happens when i use add_filter and pre_submission:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastebin.com/ZpwE4aUY&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/ZpwE4aUY&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;When i let the add_filter alone or together with add_action, the error happens everytime. When i comment the add_filter, and use only the add_action, it does work bugless.&#60;/p&#62;
&#60;p&#62;I wonder why the action works and the filter does not. They both are beeing called by form_display.&#60;/p&#62;
&#60;p&#62;Yesterday I pinpoint the problem using a debugger with breakpoints on every $form.&#60;br /&#62;
I noticed that when using the add_filter, at some point in form_display.php code, the $form var turns into null (???), and a cascade of errors happens until the rest of code, ending up on the :// string after the url, the 404 error and no record savings.&#60;/p&#62;
&#60;p&#62;I hope it helps you on fixing the issue. I'm using add_action for now, but I really would like to know why the add_filter behaves like that and the add_action doesn't. If you fix it, please let me know.&#60;/p&#62;
&#60;p&#62;Also, what's the difference of using filter or action? They look the same to me. Are they for different purposes ? &#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-97657</link>
			<pubDate>Sat, 01 Dec 2012 05:00:42 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">97657@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can you export that form please and email it to me at &#60;a href=&#34;mailto:chris@rocketgenius.com&#34;&#62;chris@rocketgenius.com&#60;/a&#62;.  Also, please send me the function you are using with your gform_pre_submission_filter so I can add that and see what happens on my server.  Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yammy on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-97035</link>
			<pubDate>Thu, 29 Nov 2012 16:00:11 +0000</pubDate>
			<dc:creator>yammy</dc:creator>
			<guid isPermaLink="false">97035@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So, what I have to do to get some support here????
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yammy on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-96985</link>
			<pubDate>Thu, 29 Nov 2012 13:12:11 +0000</pubDate>
			<dc:creator>yammy</dc:creator>
			<guid isPermaLink="false">96985@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I tried changing this to add_action, and still the same behavior. When I add filter or action of pre_submission, the odd string /:/ appears on url after submit, the page goes 404, and the entry doesn't save anymore.&#60;/p&#62;
&#60;p&#62;Please I need to make changes to the data before saving it, can anyone help me with that!? &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yammy on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-96718</link>
			<pubDate>Wed, 28 Nov 2012 21:18:26 +0000</pubDate>
			<dc:creator>yammy</dc:creator>
			<guid isPermaLink="false">96718@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I figured it out that what causes the error is when I use the pair: &#60;/p&#62;
&#60;p&#62;add_filter( &#34;gform_pre_submission_filter_1&#34;, &#34;pre_submission_filter_1&#34;);&#60;br /&#62;
function pre_submission_filter_1( ) { }&#60;/p&#62;
&#60;p&#62;Whenever I use this pre_submission_filter, even if the function itself has no code inside, the odd string after url starts showing. So it's something I'm missing, did I forget to do something else after the filter ?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>yammy on "form suddenly stops saving created form data"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-suddenly-stops-saving-created-form-data#post-96656</link>
			<pubDate>Wed, 28 Nov 2012 16:56:03 +0000</pubDate>
			<dc:creator>yammy</dc:creator>
			<guid isPermaLink="false">96656@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;i'm running clean install, no other plugins, on /localhost/test/myform  page.&#60;/p&#62;
&#60;p&#62;When i just create the form, It works normally, then I insert some new posts from the form it works, but suddenly it stops saving new entries. The form submits, and instead of showing the sucess text message, it opens the url like this :&#60;/p&#62;
&#60;p&#62;/localhost/test/myform/://#gf_4&#60;/p&#62;
&#60;p&#62;it shows no sucess text, and doesn't save entries anymore, opens the single template page with odd values, listing all other posts in sequence.&#60;/p&#62;
&#60;p&#62;I increased php memory in wpconfig, tried resaving the form and no go. I copied the form into another form, and it worked again for a while, then again, the odd string started showing at the url and no more new entries.&#60;/p&#62;
&#60;p&#62;The form is somehow not reliable. Anyone can tell me why this is happening, and how to debug this? Where this odd string comes from ? Which file prints this instead of the sucess text ?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
