<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum &#187; Forum: Surveys WordPress Plugin - Recent Posts</title>
		<link>http://projects.binnyva.com/forum/forum/surveys-wordpress-plugin</link>
		<description>Support for my OSS Projects</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 11:28:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://projects.binnyva.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://projects.binnyva.com/forum/rss/forum/surveys-wordpress-plugin" rel="self" type="application/rss+xml" />

		<item>
			<title>ebolker on "Export to CVS not working."</title>
			<link>http://projects.binnyva.com/forum/topic/export-to-cvs-not-working#post-2491</link>
			<pubDate>Tue, 10 Jan 2012 21:52:57 +0000</pubDate>
			<dc:creator>ebolker</dc:creator>
			<guid isPermaLink="false">2491@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This is an old problem - intermittent.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://projects.binnyva.com/forum/topic/export_to_csv_stopped_working&#34; rel=&#34;nofollow&#34;&#62;http://projects.binnyva.com/forum/topic/export_to_csv_stopped_working&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Sometimes export works for me, sometimes not. It failed just now, upgrading wordpress didn't help. I'm reluctant to upgrade surveys because of my recent comment at &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters&#34; rel=&#34;nofollow&#34;&#62;http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://projects.binnyva.com/forum/topic/export_to_csv_stopped_working&#34; rel=&#34;nofollow&#34;&#62;http://projects.binnyva.com/forum/topic/export_to_csv_stopped_working&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ebolker on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2490</link>
			<pubDate>Tue, 10 Jan 2012 21:37:41 +0000</pubDate>
			<dc:creator>ebolker</dc:creator>
			<guid isPermaLink="false">2490@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I had some students look at this. They made the change visible at the end of export.php (code follows). The good news is that it doesn't affect existing surveys.&#60;/p&#62;
&#60;p&#62;They should have gotten back to Binny about this but didn't ...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Surveys
Plugin URI: &#60;a href=&#34;http://www.bin-co.com/tools/wordpress/plugins/surveys/&#34; rel=&#34;nofollow&#34;&#62;http://www.bin-co.com/tools/wordpress/plugins/surveys/&#60;/a&#62;
Description: The Surveys WordPress plugin lets you add surveys to your blog. You can let the vistors take surveys and see the result from the admin side.
Version: 1.01.7
Author: Binny V A (updated by UMASS SCOPE team)
Author URI: &#60;a href=&#34;http://www.binnyva.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.binnyva.com/&#60;/a&#62;
*/

/**
 * Add a new menu under Manage, visible for all users with template viewing level.
 */
add_action( &#38;#39;admin_menu&#38;#39;, &#38;#39;surveys_add_menu_links&#38;#39; );
function surveys_add_menu_links() {
	global $wp_version, $_registered_pages;
	$view_level= 2;
	$page = &#38;#39;edit.php&#38;#39;;
	if($wp_version &#38;gt;= &#38;#39;2.7&#38;#39;) $page = &#38;#39;tools.php&#38;#39;;

	add_submenu_page($page, __(&#38;#39;Manage Surveys&#38;#39;, &#38;#39;surveys&#38;#39;), __(&#38;#39;Manage Surveys&#38;#39;, &#38;#39;surveys&#38;#39;), $view_level, &#38;#39;surveys/survey.php&#38;#39;);

	$code_pages = array(&#38;#39;export.php&#38;#39;,&#38;#39;export_choose.php&#38;#39;,&#38;#39;individual_responses.php&#38;#39;,&#38;#39;question.php&#38;#39;,&#38;#39;question_form.php&#38;#39;,&#38;#39;responses.php&#38;#39;,&#38;#39;show_individual_response.php&#38;#39;,&#38;#39;survey_action.php&#38;#39;,&#38;#39;survey_form.php&#38;#39;);
	foreach($code_pages as $code_page) {
		$hookname = get_plugin_page_hookname(&#38;quot;surveys/$code_page&#38;quot;, &#38;#39;&#38;#39; );
		$_registered_pages[$hookname] = true;
	}
}

/**
 * This will scan all the content pages that wordpress outputs for our special code. If the code is found, it will replace the requested survey.
 */
add_shortcode( &#38;#39;SURVEYS&#38;#39;, &#38;#39;surveys_shortcode&#38;#39; );
function surveys_shortcode( $attr ) {
	$survey_id = $attr[0];

	$contents = &#38;#39;&#38;#39;;
	if(is_numeric($survey_id)) { // Basic validiation - more on the show_quiz.php file.
		ob_start();
		include(ABSPATH . &#38;#39;wp-content/plugins/surveys/show_survey.php&#38;#39;);
		$contents = ob_get_contents();
		ob_end_clean();
	}
	return $contents;
}

/// Add an option page for surveys.
add_action(&#38;#39;admin_menu&#38;#39;, &#38;#39;surveys_option_page&#38;#39;);
function surveys_option_page() {
	add_options_page(__(&#38;#39;Surveys Settings&#38;#39;, &#38;#39;surveys&#38;#39;), __(&#38;#39;Surveys Settings&#38;#39;, &#38;#39;surveys&#38;#39;), 8, basename(__FILE__), &#38;#39;surveys_options&#38;#39;);
}
function surveys_options() {
	if ( function_exists(&#38;#39;current_user_can&#38;#39;) &#38;amp;&#38;amp; !current_user_can(&#38;#39;manage_options&#38;#39;) ) die(__(&#38;quot;Cheatin&#38;#39; uh?&#38;quot;, &#38;#39;surveys&#38;#39;));
	if (! user_can_access_admin_page()) wp_die( __(&#38;#39;You do not have sufficient permissions to access this page.&#38;#39;, &#38;#39;surveys&#38;#39;) );

	require(ABSPATH. &#38;#39;/wp-content/plugins/surveys/options.php&#38;#39;);
}

add_action(&#38;#39;activate_surveys/surveys.php&#38;#39;,&#38;#39;surveys_activate&#38;#39;);
function surveys_activate() {
	global $wpdb;

	// Initial options.
	add_option(&#38;#39;surveys_questions_per_page&#38;#39;, 1);
	add_option(&#38;#39;surveys_insert_csv_header&#38;#39;, 1);

	$database_version = &#38;#39;4&#38;#39;;
	$installed_db = get_option(&#38;#39;surveys_db_version&#38;#39;);

	if($database_version != $installed_db) {
		require_once(ABSPATH . &#38;#39;wp-admin/includes/upgrade.php&#38;#39;);
		// Create the table structure
		$sql = &#38;quot;CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_answer (
					ID int(11) unsigned NOT NULL auto_increment,
					question_ID int(11) unsigned NOT NULL,
					answer varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					sort_order int(3) NOT NULL,
					INDEX ( question_ID ),
					PRIMARY KEY  (ID)
					) ;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_question (
					ID int(11) unsigned NOT NULL auto_increment,
					survey_ID int(11) unsigned NOT NULL,
					question mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					allow_user_answer int(1) NOT NULL default &#38;#39;0&#38;#39;,
					allow_multiple_answers int(2) NOT NULL default &#38;#39;0&#38;#39;,
					user_answer_format enum(&#38;#39;entry&#38;#39;,&#38;#39;textarea&#38;#39;,&#38;#39;checkbox&#38;#39;) NOT NULL default &#38;#39;entry&#38;#39;,
					PRIMARY KEY  (ID),
					KEY survey_id (survey_ID)
					) ;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_result (
					ID int(11) unsigned NOT NULL auto_increment,
					survey_ID int(11) unsigned NOT NULL,
					name varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					email varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					added_on datetime NOT NULL,
					INDEX ( survey_ID ),
					PRIMARY KEY  (ID)
					) ;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_result_answer (
					ID int(11) unsigned NOT NULL auto_increment,
					result_ID int(11) unsigned NOT NULL,
					answer_ID int(11) unsigned NOT NULL,
					question_ID INT( 11 ) UNSIGNED NOT NULL,
					user_answer longblob NOT NULL,
					INDEX ( question_ID ),
					INDEX ( answer_ID ),
					INDEX ( result_ID ),
					PRIMARY KEY  (ID)
					) ;
				CREATE TABLE {$wpdb-&#38;gt;prefix}surveys_survey (
					ID int(11) unsigned NOT NULL auto_increment,
					name varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					description mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					final_screen mediumtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
					status enum(&#38;#39;1&#38;#39;,&#38;#39;0&#38;#39;) NOT NULL default &#38;#39;0&#38;#39;,
					added_on datetime NOT NULL,
					PRIMARY KEY  (ID)
					) ;&#38;quot;;

		if($database_version == 2) {
			$wpdb-&#38;gt;query(&#38;quot;UPDATE {$wpdb-&#38;gt;prefix}surveys_result_answer RA
				SET question_ID=(SELECT question_ID FROM {$wpdb-&#38;gt;prefix}surveys_answer WHERE ID=RA.answer_ID)&#38;quot;);
		}
		dbDelta($sql);
		update_option( &#38;quot;surveys_db_version&#38;quot;, $database_version );
	}
  // ALTER the table and modify the attribute of user_answer to longblob
  // did the same for CREATE table too
  // Revised by: SCOPE team
	else
		{
			$wpdb-&#38;gt;query(&#38;quot;ALTER TABLE {$wpdb-&#38;gt;prefix}surveys_result_answer
					MODIFY COLUMN user_answer longblob NOT NULL&#38;quot;);
		}
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>bmilliot on "Export to CVS not working."</title>
			<link>http://projects.binnyva.com/forum/topic/export-to-cvs-not-working#post-2489</link>
			<pubDate>Tue, 10 Jan 2012 20:01:25 +0000</pubDate>
			<dc:creator>bmilliot</dc:creator>
			<guid isPermaLink="false">2489@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Getting a page not found when exporting to CVS. Tried uploading all new files to no avail. Works on my localhost, but not my web server.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kangaman on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2473</link>
			<pubDate>Fri, 25 Nov 2011 00:42:35 +0000</pubDate>
			<dc:creator>kangaman</dc:creator>
			<guid isPermaLink="false">2473@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;All fixed, thanks so much for that fix.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pascuals on "Creating a new translation"</title>
			<link>http://projects.binnyva.com/forum/topic/creating-a-new-translation#post-2472</link>
			<pubDate>Thu, 24 Nov 2011 18:40:11 +0000</pubDate>
			<dc:creator>pascuals</dc:creator>
			<guid isPermaLink="false">2472@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;There is a great program to EDIT and CREATE both .mo and .po files for your language called *Poedit*, you can download it here &#60;a href=&#34;http://www.poedit.net/download.php&#34; rel=&#34;nofollow&#34;&#62;http://www.poedit.net/download.php&#60;/a&#62;.&#60;br /&#62;
Open the file, make the changes and Save as...&#60;br /&#62;
It Automatically creates the .mo file.&#60;br /&#62;
Thx for the plugin!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pascuals on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2471</link>
			<pubDate>Thu, 24 Nov 2011 18:36:31 +0000</pubDate>
			<dc:creator>pascuals</dc:creator>
			<guid isPermaLink="false">2471@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Edit &#34;surveys/show_survey.php&#34; line 51, change it to&#60;/p&#62;
&#60;p&#62;$email_body = t(&#34;Hi,\nThere is a new result for the survey at %s...\n&#34;,get_the_title());&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kangaman on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2470</link>
			<pubDate>Thu, 24 Nov 2011 16:30:15 +0000</pubDate>
			<dc:creator>kangaman</dc:creator>
			<guid isPermaLink="false">2470@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Getting the same error in ie and firefox, wp version 3.2.1, hope we can find a solution. Great plugin!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>silvester2 on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2468</link>
			<pubDate>Sun, 20 Nov 2011 13:35:24 +0000</pubDate>
			<dc:creator>silvester2</dc:creator>
			<guid isPermaLink="false">2468@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I have the same problem. Could you find a solution so far? Thanks for your kind support!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>seanjc on "Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/publi"</title>
			<link>http://projects.binnyva.com/forum/topic/warning-sprintf-functionsprintf-too-few-arguments-in-homethehort1publi#post-2464</link>
			<pubDate>Tue, 08 Nov 2011 00:08:00 +0000</pubDate>
			<dc:creator>seanjc</dc:creator>
			<guid isPermaLink="false">2464@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I get this warning once the voter has pressed Submit. It appears on the page asking for an email address. The votes are still sent through to me though. &#60;/p&#62;
&#60;p&#62;Warning: sprintf() [function.sprintf]: Too few arguments in /home/thehort1/public_html/wp-content/plugins/surveys/wpframe.php on line 53
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "Fatal error: func_get_args():"</title>
			<link>http://projects.binnyva.com/forum/topic/fatal-error-func_get_args#post-2454</link>
			<pubDate>Sat, 22 Oct 2011 22:29:40 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2454@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Some servers have this issue. I'm looking into it. For now, downgrade your surveys plugin to the old version.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dustycat on "Fatal error: func_get_args():"</title>
			<link>http://projects.binnyva.com/forum/topic/fatal-error-func_get_args#post-2453</link>
			<pubDate>Fri, 21 Oct 2011 15:41:45 +0000</pubDate>
			<dc:creator>dustycat</dc:creator>
			<guid isPermaLink="false">2453@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Fatal error: func_get_args(): Can't be used as a function parameter in /home/scs/public_html/wp-content/plugins/surveys/wpframe.php on line 59&#60;/p&#62;
&#60;p&#62;This is the message I get after I have activated the plugin and clicked on Surveys Settings in the Settings Menu&#60;/p&#62;
&#60;p&#62;Please advise how to fix this
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "Creating a new translation"</title>
			<link>http://projects.binnyva.com/forum/topic/creating-a-new-translation#post-2452</link>
			<pubDate>Thu, 20 Oct 2011 12:32:03 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2452@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;When creating a translation, put it in the lang folder with the name 'surveys-fr_FR.mo'(language names will differ). It should work. Also, send a copy of the files to me(binnyva, gmail) and I'll add it to the plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>llummus on "multiple text entries"</title>
			<link>http://projects.binnyva.com/forum/topic/multiple-text-entries#post-2450</link>
			<pubDate>Wed, 28 Sep 2011 23:22:48 +0000</pubDate>
			<dc:creator>llummus</dc:creator>
			<guid isPermaLink="false">2450@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I'm trying to make a question that asks:&#60;/p&#62;
&#60;p&#62;How many adults and how many children in each age range are in your household?&#60;br /&#62;
Answers:&#60;br /&#62;
Adults:&#60;br /&#62;
Children 0-3:&#60;br /&#62;
Children 4-6:&#60;br /&#62;
Children 7-12:&#60;br /&#62;
Children 13-17:&#60;/p&#62;
&#60;p&#62;I want each of the answers to have a text box instead of a checkbox.  I also want the user to be able to answer multiple questions.  I've played around with the different settings and can't figure out how to make this possible.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nicos on "Creating a new translation"</title>
			<link>http://projects.binnyva.com/forum/topic/creating-a-new-translation#post-2447</link>
			<pubDate>Wed, 28 Sep 2011 17:48:57 +0000</pubDate>
			<dc:creator>nicos</dc:creator>
			<guid isPermaLink="false">2447@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Same problem with a french translation I made.&#60;br /&#62;
file names fr_FR.mo and fr_FR.po&#60;br /&#62;
I tried putting them in the lang folder and at the root plugin folder, still in english...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>llummus on "Too may answers"</title>
			<link>http://projects.binnyva.com/forum/topic/too-may-answers#post-2446</link>
			<pubDate>Tue, 20 Sep 2011 03:19:27 +0000</pubDate>
			<dc:creator>llummus</dc:creator>
			<guid isPermaLink="false">2446@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I have 4 answers for a question, but it is automatically including a 5th blank answer with a checkbox.  The main page of the survey confirms that I have four answers.  Any suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>swcomm on "IE 8 Page Background not displaying"</title>
			<link>http://projects.binnyva.com/forum/topic/ie-8-page-background-not-displaying#post-2444</link>
			<pubDate>Thu, 15 Sep 2011 06:33:11 +0000</pubDate>
			<dc:creator>swcomm</dc:creator>
			<guid isPermaLink="false">2444@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This is very strange. Recently upgraded to wp 3.2.1. Surveys work fine, except the page with the survey inserted via shortcode doesn't display the page background in IE 8. Has to be a z-index issue, because the background is there, it's just covered up with solid white. Once you submit the survey question responses and get to the name/email portion, the background starts displaying correctly. I'm not entirely sure which php file in the survey plugin to look at for this -- can you advise?  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "image not displaying in question"</title>
			<link>http://projects.binnyva.com/forum/topic/image-not-displaying-in-question-1#post-2443</link>
			<pubDate>Wed, 14 Sep 2011 19:54:56 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2443@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;It works on most servers. But I have had people telling me it don't work on some. Will look into it. I think its a magic_quotes issue.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cnghiem on "image not displaying in question"</title>
			<link>http://projects.binnyva.com/forum/topic/image-not-displaying-in-question-1#post-2436</link>
			<pubDate>Sat, 10 Sep 2011 03:31:52 +0000</pubDate>
			<dc:creator>cnghiem</dc:creator>
			<guid isPermaLink="false">2436@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;When we insert an image to our question, it does not display when viewing the survey. Instead we get slashes displayed when taking the survey: \&#34;\&#34;&#60;/p&#62;
&#60;p&#62;We insert the image by clicking on the image icon at the top and then inserting it to the post.&#60;/p&#62;
&#60;p&#62;Do you know how we can solve this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>madopr on "Creating a new translation"</title>
			<link>http://projects.binnyva.com/forum/topic/creating-a-new-translation#post-2434</link>
			<pubDate>Tue, 30 Aug 2011 16:54:37 +0000</pubDate>
			<dc:creator>madopr</dc:creator>
			<guid isPermaLink="false">2434@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I've got the same problem here. I've tried to modify the default.po file with PoEdit, changed the file names to &#34;surveys-es-ES.po/.mo&#34; and just &#34;es-ES.po/.mo&#34;; but nothing worked. Is there any solution to this or should I search all texts in the php files and change it manually?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gg on "Remove the Submit Survey button from all questions except last one"</title>
			<link>http://projects.binnyva.com/forum/topic/remove-the-submit-survey-button-from-all-questions-except-last-one#post-2433</link>
			<pubDate>Sat, 20 Aug 2011 17:23:14 +0000</pubDate>
			<dc:creator>gg</dc:creator>
			<guid isPermaLink="false">2433@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Great plugin (so far)&#60;br /&#62;
I too want to remove the 'submit survey' button from the bottom of every page.&#60;br /&#62;
Any idea how to do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "Plugin feedback"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-feedback#post-2423</link>
			<pubDate>Sat, 09 Jul 2011 19:15:27 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2423@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Not a problem. But please do share the URL here. It might be of help to others. And thanks :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>logicdesign on "Plugin feedback"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-feedback#post-2420</link>
			<pubDate>Sun, 03 Jul 2011 23:19:09 +0000</pubDate>
			<dc:creator>logicdesign</dc:creator>
			<guid isPermaLink="false">2420@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hmm it's taking me more thime than i thought... the result goes way farther than the original plugin and i'm thinking about releasing it as a new plugin. Would that bother you BinnyVA ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "Plugin feedback"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-feedback#post-2419</link>
			<pubDate>Sat, 02 Jul 2011 23:24:10 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2419@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Thanks a lot for your help. Do share your work here after you are done. I'll try and add your code to the plugin :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>logicdesign on "Plugin feedback"</title>
			<link>http://projects.binnyva.com/forum/topic/plugin-feedback#post-2418</link>
			<pubDate>Thu, 30 Jun 2011 18:13:54 +0000</pubDate>
			<dc:creator>logicdesign</dc:creator>
			<guid isPermaLink="false">2418@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;First of all i want to give thanks to Binnyva for his opensource work that i deeply apreciate. &#60;/p&#62;
&#60;p&#62;I'm studiing this plugin as i need a good/free survey plugin for more than one of my projects. I've been trying many other plugins but they ask money or show add during the survey and i definitly dont want any of those solutions.&#60;/p&#62;
&#60;p&#62;This one is one of the best survey free plugins i've found for wordpress, and it proves that procedural developement can be as good in term of results as oriented object (sometimes even better).&#60;/p&#62;
&#60;p&#62;Next step i'm going to do is to solve the main problems this plugin still has:&#60;br /&#62;
1. It doesnt check the answerquestion's quality given by visitors.&#60;br /&#62;
2. It doesn't have a mandatory option on questions.&#60;br /&#62;
3. It doesn't have an anti spam system. &#60;/p&#62;
&#60;p&#62;There is a &#34;bug&#34; on the script.js, on the function nextQuestion() the line &#60;/p&#62;
&#60;p&#62;[code]&#60;br /&#62;
if(survey_questions_per_page != 0) return nextPage(e); // Multi question per page&#60;br /&#62;
[/code] &#60;/p&#62;
&#60;p&#62;is executed before testing if there was any question answered on the survey, so it skip that js test and go forward to the next survey page. To correct that this line has to be moved after to the end of the function. &#60;/p&#62;
&#60;p&#62;Even with this correction, the user (who maybe doesnt have js activated) should be forced to answer some/all questions before skipping to next page or to submit the form. &#60;/p&#62;
&#60;p&#62;I will expend sometime to correct some of those problems and submit my version of this plugin shortly. &#60;/p&#62;
&#60;p&#62;If you want to contribute/give ideas to solve some of the problems i'm talking about here, please contact me!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2417</link>
			<pubDate>Sun, 12 Jun 2011 17:52:57 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2417@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;You are looking at the wrong table. The answers are stored in the wp_surveys_answer table.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>infiniteglamour on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2416</link>
			<pubDate>Wed, 08 Jun 2011 09:06:30 +0000</pubDate>
			<dc:creator>infiniteglamour</dc:creator>
			<guid isPermaLink="false">2416@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Totally confused...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mediaslinger on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2415</link>
			<pubDate>Thu, 02 Jun 2011 23:42:49 +0000</pubDate>
			<dc:creator>mediaslinger</dc:creator>
			<guid isPermaLink="false">2415@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;This may be where my inexperience with databases shows up, but I went in through phpMyAdmin and I don&#38;#39;t see an option to change either the type or value of the field to either TEXT or MEDIUMTEXT.  What am I missing?  Thanks a lot.&#60;/p&#62;
&#60;p&#62; &lt;a class=&#039;bb_attachments_link&#039; href=&#039;http://projects.binnyva.com/forum/?bb_attachments=2415&amp;bbat=26&#039;&gt;&lt;img  src=&#039;http://projects.binnyva.com/forum/?bb_attachments=2415&amp;bbat=26&amp;inline&#039; /&gt;&lt;/a&gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2414</link>
			<pubDate>Wed, 01 Jun 2011 11:09:49 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2414@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Edit the database and change that field to TEXT or MEDIUMTEXT. That should do the trick.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mediaslinger on "textarea responses... only 250 characters"</title>
			<link>http://projects.binnyva.com/forum/topic/textarea-responses-only-250-characters#post-2413</link>
			<pubDate>Wed, 01 Jun 2011 06:22:28 +0000</pubDate>
			<dc:creator>mediaslinger</dc:creator>
			<guid isPermaLink="false">2413@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;I found this in line 77 of surveys.php:&#60;/p&#62;
&#60;p&#62;					answer varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,&#60;/p&#62;
&#60;p&#62;I know varchar has to do with a character set of a particular length, but that's about as far as my knowledge goes.  I tried changing 255 (it also appears on line 106) to a higher number, but it didn't affect the length of the character set in either the wordpress display or the email.  Anyone out there who knows their database code that could maybe solve this? Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Binny V A on "How to add another field to the final form?"</title>
			<link>http://projects.binnyva.com/forum/topic/how-to-add-another-field-to-the-final-form#post-2402</link>
			<pubDate>Tue, 19 Apr 2011 22:24:07 +0000</pubDate>
			<dc:creator>Binny V A</dc:creator>
			<guid isPermaLink="false">2402@http://projects.binnyva.com/forum/</guid>
			<description>&#60;p&#62;Its possible - but there is a bit of coding involved.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

