<?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 User Favorites: ElasticMind</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/elasticmind'>elasticmind</a></link>
		<description>Gravity Support Forums User Favorites: ElasticMind</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Apr 2026 12:08:01 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-28971</link>
			<pubDate>Fri, 01 Jul 2011 15:17:10 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">28971@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;@breslincenter The problem is WordPress permalinks don't work well on older versions of IIS on Windows.  404 rewrite handlers are hacks and don't work properly.  Can you switch your hosting to use Linux? Hosting WordPress and PHP apps on Windows hosting is a recipe for problems, the majority of which are related to Permalinks and Email issues with WordPress.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>breslincenter on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-28926</link>
			<pubDate>Thu, 30 Jun 2011 22:42:19 +0000</pubDate>
			<dc:creator>breslincenter</dc:creator>
			<guid isPermaLink="false">28926@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am having an issue with my form not submitting AND with email notification not being sent. My form URL is: &#60;a href=&#34;http://beckersbridal.com/?page_id=210&#34; rel=&#34;nofollow&#34;&#62;http://beckersbridal.com/?page_id=210&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The host is GoDaddy (Windows).&#60;/p&#62;
&#60;p&#62;When I deactivate permalinks, it submits (but no email is sent out, and I have verified the email settings). When permalinks are activated, (which I need), the form will not submit... it just refreshes the page to the blank form again.&#60;/p&#62;
&#60;p&#62;I had issues with GoDaddy and permalinks before realizing the form issues, so I uploaded a file titled 404-handler.php to my site that I found on another forum. Here is the code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// This is the default file for the site. Usually index.php
$default = &#38;#39;index.php&#38;#39;;

// The name of this file.
// Set this value for the URL in Custom Error Properties of your website in IIS.
// Goto: IIS Manager &#38;gt; Websites &#38;gt; [Site Name] &#38;gt; Properties &#38;gt; Custom Errors &#38;gt;
// 404 &#38;amp; 404;2 &#38;amp; 404;3 &#38;gt; URL (Requires a &#38;#39;/&#38;#39; prefix in IIS).
$thisfile = &#38;#39;404-handler.php&#38;#39;;

$_SERVER[&#38;#39;ORIG_PATH_TRANSLATED&#38;#39;] = str_replace($thisfile, $default, $_SERVER[&#38;#39;ORIG_PATH_TRANSLATED&#38;#39;]);
$_SERVER[&#38;#39;SCRIPT_FILENAME&#38;#39;] = str_replace($thisfile, $default, $_SERVER[&#38;#39;SCRIPT_FILENAME&#38;#39;]);
$_SERVER[&#38;#39;ORIG_PATH_INFO&#38;#39;] = str_replace($thisfile, $default, $_SERVER[&#38;#39;ORIG_PATH_INFO&#38;#39;]);
$_SERVER[&#38;#39;SCRIPT_NAME&#38;#39;] = str_replace($thisfile, $default, $_SERVER[&#38;#39;SCRIPT_NAME&#38;#39;]);
$_SERVER[&#38;#39;PHP_SELF&#38;#39;] = str_replace($thisfile, $default, $_SERVER[&#38;#39;PHP_SELF&#38;#39;]);
$_SERVER[&#38;#39;PATH_INFO&#38;#39;] = false;

$qs =&#38;amp; $_SERVER[&#38;#39;QUERY_STRING&#38;#39;];
$ru =&#38;amp; $_SERVER[&#38;#39;REQUEST_URI&#38;#39;];
$pos = strrpos($qs, &#38;#39;://&#38;#39;);
$pos = strpos($qs, &#38;#39;/&#38;#39;, $pos + 4);
$_SERVER[&#38;#39;URL&#38;#39;] = $ru = substr($qs, $pos);
$qs = trim(stristr($ru, &#38;#39;?&#38;#39;), &#38;#39;?&#38;#39;);

// Required for WordPress 2.8+
$_SERVER[&#38;#39;HTTP_X_ORIGINAL_URL&#38;#39;] = $ru;

// Fix GET vars
foreach ( $_GET as $var =&#38;gt; $val ) {
  if ( substr($var, 0, 3) == &#38;#39;404&#38;#39;) {
    if ( strstr($var, &#38;#39;?&#38;#39;) ) {
      $newvar = substr($var, strpos($var, &#38;#39;?&#38;#39;) + 1);
      $_GET[$newvar] = $val;
    }
    unset($_GET[$var]);
  }
  break;
}
include($default);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2268</link>
			<pubDate>Sun, 20 Dec 2009 21:47:23 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">2268@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hit us up via the Contact Us form with details.  The issue the user that started this thread is having is unrelated to the issue you are encountering which is unique.  &#60;/p&#62;
&#60;p&#62;The form submission does nothing that would cause it to erase the entire thing so something else is going on.&#60;/p&#62;
&#60;p&#62;If you can, include a WordPress login for the site you have this installed in when you submit the Contact Us form so we can login and debug the issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Laurieco on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2267</link>
			<pubDate>Sun, 20 Dec 2009 20:04:50 +0000</pubDate>
			<dc:creator>Laurieco</dc:creator>
			<guid isPermaLink="false">2267@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, Carl!&#60;br /&#62;
I finally got the plugin working and loved it but when I submitted the form it erased the entire thing!  So frustrating.  I know it's going to be great, but I also need to know it will save.&#60;br /&#62;
I am using PHP5, Wordpress Version 2.9.&#60;br /&#62;
Help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ElasticMind on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2240</link>
			<pubDate>Fri, 18 Dec 2009 18:02:28 +0000</pubDate>
			<dc:creator>ElasticMind</dc:creator>
			<guid isPermaLink="false">2240@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl,&#60;/p&#62;
&#60;p&#62;Thanks so much for the response and information. I will chat with my host about the issue.&#60;/p&#62;
&#60;p&#62;Much appreciated,&#60;/p&#62;
&#60;p&#62;Tara
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2233</link>
			<pubDate>Fri, 18 Dec 2009 15:44:30 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">2233@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try this.  Go to your permalinks settings for this site and temporarily change it so that this site is using the default permalink setting.  It should look like this:&#60;/p&#62;
&#60;p&#62;Ex.&#60;br /&#62;
&#60;a href=&#34;http://www.elasticmind.ca/?p=123&#34; rel=&#34;nofollow&#34;&#62;http://www.elasticmind.ca/?p=123&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now go to your Contact page and submit the form.  It will work.&#60;/p&#62;
&#60;p&#62;Your web host or specific hosting account has something going on with the URL rewriting that is preventing the form from submitting to itself.  This is why it works if you have your permalinks setup to use ?p=XXX instead of the page name.&#60;/p&#62;
&#60;p&#62;You are going to have to contact your host to try and determine the issue.  &#60;/p&#62;
&#60;p&#62;Your site also has issues as you can't login to the admin without going to a specific page within the admin.  Just going to /wp-admin and logging in doesn't work.  This could very well be related.&#60;/p&#62;
&#60;p&#62;If they are unable to assist you I would strongly consider switching hosts, you shouldn't be having these problems with your permalinks.  We have customers on all different web hosts and nobody else is experiencing this issue... we can recommend a good web host if you would like.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ElasticMind on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2232</link>
			<pubDate>Fri, 18 Dec 2009 15:09:38 +0000</pubDate>
			<dc:creator>ElasticMind</dc:creator>
			<guid isPermaLink="false">2232@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks, Kevin. Can you help me with the issue with my form? I'd really like to get this thing to work and I'm unsure what my next steps should be.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2223</link>
			<pubDate>Thu, 17 Dec 2009 23:37:40 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">2223@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'll check on the forum notification plugin and see what's up. Thanks for the note about that.  You can always favorite this topic and then keep an eye on it via the rss feed&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://forum.gravityhelp.com/rss/profile/elasticmind&#34; rel=&#34;nofollow&#34;&#62;http://forum.gravityhelp.com/rss/profile/elasticmind&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ElasticMind on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2218</link>
			<pubDate>Thu, 17 Dec 2009 20:00:50 +0000</pubDate>
			<dc:creator>ElasticMind</dc:creator>
			<guid isPermaLink="false">2218@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;MetaWave Digital Media out of Toronto - &#60;a href=&#34;http://www.meta-wave.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.meta-wave.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;What should my next steps be to get this working?&#60;/p&#62;
&#60;p&#62;Oh and Carl, I keep subscribing to this thread but I never get emailed your responses... not sure why.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Form not submitting"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/form-not-submitting#post-2111</link>
			<pubDate>Thu, 10 Dec 2009 14:48:18 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">2111@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The form not submitting is probably URL rewriting related.  It's definitely a server configuration issue that is preventing the form from submitting to itself.  Hosting PHP based sites on IIS is usually a recipe for problems.  Who is your web host?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
