<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged response</title>
<link>https://www.question2answer.org/qa/tag/response</link>
<description>Powered by Question2Answer</description>
<item>
<title>How can I solve these problems in red bg?</title>
<link>https://www.question2answer.org/qa/111244/how-can-i-solve-these-problems-in-red-bg</link>
<description>

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=6116888976893714220&quot; style=&quot;height:1233px; width:600px&quot;&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/111244/how-can-i-solve-these-problems-in-red-bg</guid>
<pubDate>Tue, 07 Nov 2023 16:13:55 +0000</pubDate>
</item>
<item>
<title>How to solve Unexpected response from server - please try again or switch off Javascript.</title>
<link>https://www.question2answer.org/qa/98581/solve-unexpected-response-server-please-switch-javascript</link>
<description>

&lt;p&gt;How to solve Unexpected response from server - please try again or switch off Javascript.&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=1646900712381173444&quot; style=&quot;height:240px; width:600px&quot;&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/98581/solve-unexpected-response-server-please-switch-javascript</guid>
<pubDate>Sat, 25 Dec 2021 20:41:27 +0000</pubDate>
</item>
<item>
<title>Please help . Error -&quot; Unexpected response from server - please try again or switch off Javascript&quot;</title>
<link>https://www.question2answer.org/qa/92864/please-unexpected-response-server-please-switch-javascript</link>
<description>My website url : &lt;a href=&quot;https://www.desiqna.in&quot; rel=&quot;nofollow&quot;&gt;https://www.desiqna.in&lt;/a&gt; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
It has been working fine for months . Suddenly today , when I tried to answer a question , this particular error is popping up . Please help !</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/92864/please-unexpected-response-server-please-switch-javascript</guid>
<pubDate>Tue, 04 May 2021 14:46:03 +0000</pubDate>
</item>
<item>
<title>Urgent Help:Unexpected response from server - please try again or switch off javascript..</title>
<link>https://www.question2answer.org/qa/53813/urgent-unexpected-response-server-please-switch-javascript</link>
<description>Hi &lt;br /&gt;
&lt;br /&gt;
In our forum when we try to answer a question we are getting this pop up saying unexpected error. Please help tried so many things but could not remove it.. And no I did not change any core code i could think of.&lt;br /&gt;
&lt;br /&gt;
Link is : &lt;a href=&quot;http://forum.womennow.in/&quot; rel=&quot;nofollow&quot;&gt;http://forum.womennow.in/&lt;/a&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/53813/urgent-unexpected-response-server-please-switch-javascript</guid>
<pubDate>Tue, 20 Sep 2016 13:52:17 +0000</pubDate>
</item>
<item>
<title>Solution for: Unexpected response from server - please try again or switch off Javascript</title>
<link>https://www.question2answer.org/qa/50910/solution-unexpected-response-server-please-switch-javascript</link>
<description>

&lt;p&gt;After choosing another theme and using the latest v1.7.4 all my ajax requests did not work anymore and I got:&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;Unexpected response from server - please try again or switch off Javascript&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;&amp;nbsp;I checked the theme file and found the error:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function initialize()
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // change navigation: bring &quot;ask&quot; to front
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $hash = $this-&amp;gt;content['navigation']['main'];
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $hash = array('ask' =&amp;gt; $hash['ask']) + $hash;
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $this-&amp;gt;content['navigation']['main'] = $hash;
&lt;br&gt;
&lt;br&gt;Looking into the php files in the ajax folder, e.g. ajax/vote.php you see the call:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;$themeclass-&amp;gt;initialize();&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So I guess this is the culprit causing the problem. Maybe the $content is not set when the ajax call takes place?&lt;/p&gt;

&lt;p&gt;I fixed it by:&lt;/p&gt;

&lt;p&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $hash = $this-&amp;gt;content['navigation']['main'];
&lt;br&gt;&lt;span style=&quot;color:#0000FF&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if(isset($hash))
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;/span&gt;
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$hash = array('ask' =&amp;gt; $hash['ask']) + $hash;
&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$this-&amp;gt;content['navigation']['main'] = $hash;
&lt;br&gt;&lt;span style=&quot;color:#0000FF&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Hope that helps.&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/50910/solution-unexpected-response-server-please-switch-javascript</guid>
<pubDate>Thu, 17 Mar 2016 14:17:44 +0000</pubDate>
</item>
<item>
<title>One word causes error: Unexpected response from server - please try again or switch off Javascript.</title>
<link>https://www.question2answer.org/qa/25642/causes-unexpected-response-server-please-switch-javascript</link>
<description>prednisone - every time I type that word into my question2answer board it causes an error. I can type it in wordpress, but not question2answer.&lt;br /&gt;
&lt;br /&gt;
I tried searching for a solution an am unable to find the cause.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Unexpected response from server - please try again or switch off Javascript.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/25642/causes-unexpected-response-server-please-switch-javascript</guid>
<pubDate>Tue, 16 Jul 2013 11:57:27 +0000</pubDate>
</item>
<item>
<title>Getting Discussion Updates</title>
<link>https://www.question2answer.org/qa/15327/getting-discussion-updates</link>
<description>Sometimes a discussion starts in the comments on my website, but users don't know unless they choose to get e-mail notifications.&lt;br /&gt;
&lt;br /&gt;
Is it possible to add a page with &amp;quot;recent activity&amp;quot; : answers, comments that have been posted in yor threads or after your comments?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/15327/getting-discussion-updates</guid>
<pubDate>Sun, 27 May 2012 03:25:36 +0000</pubDate>
</item>
<item>
<title>Unexpected response from server</title>
<link>https://www.question2answer.org/qa/13879/unexpected-response-from-server</link>
<description>I set up a local QA site. But when I answer a quesion, I encountered an exception like this:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Unexpected response from server - please try again or switch off Javascript.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
I know there is already similar questions. but no answer.&lt;br /&gt;
&lt;br /&gt;
who can give a fix to this issue?&lt;br /&gt;
&lt;br /&gt;
thanks.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/13879/unexpected-response-from-server</guid>
<pubDate>Fri, 30 Mar 2012 03:58:35 +0000</pubDate>
</item>
<item>
<title>Internal Notification solution =mention-notifier+ Insert predetermined variable in the responses textbox like @username</title>
<link>https://www.question2answer.org/qa/8213/internal-notification-predetermined-responses-%40username</link>
<description>hello!&lt;br /&gt;
&lt;br /&gt;
I want to do that when you click to answer or comment automatically inserted into the text box the user name who wrote the questions or answers, like this: &amp;quot;@username&amp;quot;&lt;br /&gt;
&lt;br /&gt;
for use with mention-notifier plugin, get a automaticall mention like a internal notification system&lt;br /&gt;
&lt;br /&gt;
any idea?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/8213/internal-notification-predetermined-responses-%40username</guid>
<pubDate>Sat, 13 Aug 2011 21:15:47 +0000</pubDate>
</item>
<item>
<title>Unexpected response from server - please try again.</title>
<link>https://www.question2answer.org/qa/2636/unexpected-response-from-server-please-try-again</link>
<description>i installed my Q2A and integrated it with my DB, btu when i click the vote i get the error: Unexpected response from server - please try again.&lt;br /&gt;
&lt;br /&gt;
i tried removing other js files that can cause a conflicts but i stil get the same error...</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/2636/unexpected-response-from-server-please-try-again</guid>
<pubDate>Wed, 15 Sep 2010 00:16:04 +0000</pubDate>
</item>
</channel>
</rss>