<?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: Multilingual site with qtranslate error handling fails</title>
		<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails</link>
		<description>Gravity Support Forums Topic: Multilingual site with qtranslate error handling fails</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 08:27:11 +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/multilingual-site-with-qtranslate-error-handling-fails" rel="self" type="application/rss+xml" />

		<item>
			<title>mauricenaef on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-39073</link>
			<pubDate>Thu, 27 Oct 2011 04:31:22 +0000</pubDate>
			<dc:creator>mauricenaef</dc:creator>
			<guid isPermaLink="false">39073@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Carl&#60;/p&#62;
&#60;p&#62;Did you manage to have a look into this with your developer? Any change we will get the forms to work with Qtranslate. I know about WPML, but just as Gfdd, the Sites are already running with the Plugin and I would like them to use this Forms in Translation to!&#60;/p&#62;
&#60;p&#62;Thanks and regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-36093</link>
			<pubDate>Fri, 23 Sep 2011 17:55:58 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">36093@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That is going to be the problem.  The URL isn't the same.  qTranslate is changing how URL Rewriting functions which causes problems with the form submission process and the form action which uses the current URL.  &#60;/p&#62;
&#60;p&#62;The function above was one a user had posted, we aren't familiar with it and can't reproduce this issue locally because our server environment is different.  So it's not something we've been able to recreate in order to test.  But I can have our lead developer take another look.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Capstone on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-36091</link>
			<pubDate>Fri, 23 Sep 2011 17:43:16 +0000</pubDate>
			<dc:creator>Capstone</dc:creator>
			<guid isPermaLink="false">36091@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks... the site I'm working on was done before WPML was an option, and at this point switching to it isn't a practical solution. qTranslate appends the URL with a language code to handle the language selection. For example, to display the content in Spanish, the URL &#60;a href=&#34;http://www.mysite.com/mypage&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/mypage&#60;/a&#62; is changed to &#60;a href=&#34;http://www.mysite.com/es/mypage&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/es/mypage&#60;/a&#62;. Is the code snippet above the correct place to add some logic to check the current language and change the URL if needed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-36086</link>
			<pubDate>Fri, 23 Sep 2011 16:33:32 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">36086@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am not aware of any solution.  But I know WPML (&#60;a href=&#34;http://www.wpml.org&#34; rel=&#34;nofollow&#34;&#62;http://www.wpml.org&#60;/a&#62;) doesn't have this issue so the issue is going to be how qTranslate handles page translations and manipulates/changes WordPress.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Capstone on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-36084</link>
			<pubDate>Fri, 23 Sep 2011 16:29:52 +0000</pubDate>
			<dc:creator>Capstone</dc:creator>
			<guid isPermaLink="false">36084@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm looking for a solution to this as well. My PHP skills are decidedly lacking, but in looking at kevinfilteau's suggestion above, I wonder if some logic could be added to this function to detect the current language and adjust the URL accordingly:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;public function get_current_page_url() {
        $pageURL = &#38;#39;http&#38;#39;;
        if (RGForms::get(&#38;quot;HTTPS&#38;quot;,$_SERVER) == &#38;quot;on&#38;quot;)
            $pageURL .= &#38;quot;s&#38;quot;;
        $pageURL .= &#38;quot;://&#38;quot;;

        $pageURL .= RGForms::get(&#38;quot;HTTP_HOST&#38;quot;, $_SERVER) . rgget(&#38;quot;REQUEST_URI&#38;quot;, $_SERVER);
        return $pageURL;
    }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Has anyone else made any progress on a work-around? I'm desperate to resolve this issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-29330</link>
			<pubDate>Thu, 07 Jul 2011 12:15:12 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">29330@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;This is an issue on the qTranslate end and how they integrate with WordPress.  You would need to notify the qTranslate developers, it would benefit them to fix whatever the problem is because currently we recommend users use the WPML plugin (&#60;a href=&#34;http://wpml.org&#34; rel=&#34;nofollow&#34;&#62;http://wpml.org&#60;/a&#62;) for translations specifically because it works with Gravity Forms and they provide an Add-On for translating your forms as well as your pages so you can use one form in multiple languages.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mauricenaef on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-29307</link>
			<pubDate>Thu, 07 Jul 2011 10:32:45 +0000</pubDate>
			<dc:creator>mauricenaef</dc:creator>
			<guid isPermaLink="false">29307@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Any update on this? I get a blank page when a form gets submitted in a non default language to... any help is highly appreciated!&#60;/p&#62;
&#60;p&#62;regards marcel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jevgenijs on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-25671</link>
			<pubDate>Tue, 17 May 2011 07:00:37 +0000</pubDate>
			<dc:creator>Jevgenijs</dc:creator>
			<guid isPermaLink="false">25671@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I also use qTranslate for WP sites I make. I will look into the issues if they will arise.&#60;br /&#62;
Generally, qTranslate uses fairly simple hooks, so I do not really expect any problems.&#60;br /&#62;
Will tell you how it goes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-25626</link>
			<pubDate>Mon, 16 May 2011 16:13:28 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">25626@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Gravity Forms was working with qtranslate, however that was a year ago and qtranslate may have been updated since then.  I would suggest getting in touch with the qtranslate developer as they are going to know their product better than we do in order to debug what is going on.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gfdd on "Multilingual site with qtranslate error handling fails"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/multilingual-site-with-qtranslate-error-handling-fails#post-25621</link>
			<pubDate>Mon, 16 May 2011 15:23:23 +0000</pubDate>
			<dc:creator>gfdd</dc:creator>
			<guid isPermaLink="false">25621@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry if I sounded rude, I know this is probably not Gravity's fault, but when I bought the license for Gravity Forms last year, you did not report any incompatibilities with Qtranslate nor did the WPML integration exist back then.&#60;/p&#62;
&#60;p&#62;Now the site we bought Gravity for is finished and developed with Qtranslate and we cannot start from scratch. Still, the forms are not working, which is why I'm asking for some help in debugging/working around the issue right here.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
