FormBuilder 0.82


We are excited to announce the next release of the FormBuilder plugin, v. 0.82. This version contains a number of long-awaited features such as the following:

  • Added ability to export or delete specific forms from the XML backup database.
  • Added ability to translate specific front-end strings without translating the whole application.
  • Slight navigation and design reorganization for easier navigation.
  • Updated alternate_action with more robust code checking for curl library first.
  • Fixed more Windows path related problems.
  • Enabled setting checkboxes, dropdowns and radio buttons as required fields.

We hope you like this new release,. As always, if you have questions or find bugs not documented in the documentation area or FAQ, feel free to post them in the comments below.

You can download the latest edition from WordPress.org.

UPDATE: If you are experiencing issues exporting thousands of records out of the submissions DB, Matt Heyes has created a patch that we are evaluating to roll in to the next version. Use at your own risk.

289 Responses to “FormBuilder 0.82”

Marcus says:

Hello,
i have a question. I really love the plugin but it shows an error in ie8

Message: Object doesn’t support this property or method
Line: 36
Char: 2
Code: 0
URI: http://…/wp-content/plugins/formbuilder/js/javascript.js?ver=0.82

Thanks for your help.

James says:

Hi Marcus,

I’ll have to look into why that is happening. Thanks for the heads up.

James W.

Oliver says:

hey,

whenever i make changes on the form, like adding another field or editing an existing field it keeps me logging out of the admin area an no changes are taking affect.
ive tryed to deactivate all other plugins, re-activating the formbuilder plugin but that doesnt help…

furthermore i dislike that the language files are not supported anymore.

James says:

Hi Oliver,

The language files should still be fully supported. We just had some situations where the ADMIN interface needed to remain in English, while the public facing site needed to be in another language. Another potential use for the string translations is if you want to rephrase what is said on your site in other terms. For example, if you want to switch the submit button to say “Send this form Now” instead of just “Send”.

As for the logging out of the admin area, I don’t think that would be FB related. Sorry.

James W

Peter Thomas says:

On version 0.81 I have made a minor change to allow the filtering (both black and grey) handle IP addresses as well as words.

In the section of code
if($blacklist_enabled == “Enabled”)
I added
// Check the IP against the blacklist
$ip_capture = get_option(‘formBuilder_IP_Capture’);
if($ip_capture == ‘Enabled’ AND isset($_SERVER['REMOTE_ADDR']))
{
$value = $_SERVER['REMOTE_ADDR'];
if(formbuilder_on_blacklist($value))
{
$post_errors = “Your IP address has been deemed by the owners of this site to be a source of probable spam.”;
}
}

Likewise in the section

if($greylist_enabled == “Enabled”)

I added

// Check to see if the IP is on the banned list
$ip_capture = get_option(‘formBuilder_IP_Capture’);
if($ip_capture == ‘Enabled’ AND isset($_SERVER['REMOTE_ADDR']))
{
$value = $_SERVER['REMOTE_ADDR'];
if(formbuilder_on_greylist($value))
{
$form['subject'] = “POSSIBLE SPAM: ” . $form['subject'];
}
}

James says:

Hey Peter,

Those are great suggestions. I’ll see about adding them to a future release.

James W.

DSC says:

Hi James,

Ok, I have narrowed it down to this.
I receive the following error clicking on the create new autoresponse.

WordPress database error Field ‘message’ doesn’t have a default value for query INSERT INTO `wp_formbuilder_responses` (`name`,`subject`,`from_email`) VALUES (‘New AutoResponse’,'This is a new, empty autoresponse that you can now modify to suit your needs.’,'info@wyzeguyz.com’) made by require_once, do_action, call_user_func_array, formbuilder_options_page, formbuilder_options_newResponse

This is a fresh install of wordpress 2.8.4.
This is the only pluging that is activated.
Thank you for any help.

James says:

Hey DSC,

That’s very good info. thanks. I’ll see if I can track that down.

James W.

Donald says:

Two Problems:
1) I get this error when saving after trying to edit a form – “ERROR. Your form failed to save.”

2) I can’t create any new autoresponses

Any ideas?

Thanks!

James says:

Hi Donald,

Can you include details of your PHP and MySQL versions?

James W.

Lee says:

Hi

Great plugin it does everything I need apart from one thing, is there any way of creating multiple column forms. For instance;

First Name Last Name
Address
Landline number Mobile Number

Many Thanks

Lee

James says:

Hi Lee,

It is possible to rearrange fields on the page with CSS. You would probably need to do it on a form-by-form basis though.

James W.

Julia says:

Hi

I’m not able to send e-mails from the contact form.

I’ve tried switching FormBuilder to use Alternate Email Handling, and I’ve also tried putting in a local e-mail address (as suggested in the documentation), but neither have worked.

The website has been developed in version 2.8.4 of WordPress.

Thanks for your help.

Julia says:

Hello again

Forget that last post – I’ve just realised the links on my database all point to the copy on localhost, which is why e-mail isn’t working.

Now I have a different problem to sort out!

Ho hum.

Milly says:

Hi guys,

Love your plugin and have been using it for quite some time now.
But……the latest version broke my theme!
After the upgrade, my whole blog was messed up, and turned back to normal after deacticating Formbuilder.
I use WP 2.8.4 with Mandigo theme.

If you want to have a look, tell me an d I will reactivate Formbuilder for a short while for you to see the difference between what it should look like and the wrong one.

James says:

Hi Milly,

That’s strange that FB broke your theme that way. Installed Mandigo 1.41 on my test blog and it seemed to work fine. Is there anything out-of-the-ordinary that you’re using which might be interfering with the form display? What version of Mandigo are you using?

James W

Milly says:

Use Mandigo 1.41.

And there was no conflict until I upgraded Formbuilder. Haven’t made any changes lately, or installed new plugins.
What would you call “out-of-the-ordinary”?

Milly says:

It gets really weird, now.
I uninstalled the whole plugin, and re-uploaded, and now it looks fine.
So, skip my entry, problem solved (or rather non-existent at present)

Serpico says:

Hi Guys,

I’m getting timeouts (500 Internal Server Error) when trying to export the saved data from the database. I have around 2,500 records. Any advice how I can get this data into nice CSV?

Issue posted here: http://wordpress.org/support/topic/318041?replies=1#post-1236078

James says:

Thanks for posting a fix for this. We may incorporate it into future versions.
http://www.iamroot.co.uk/web-design/formbuilder-plugin-export-fix/

James W.

Rob says:

I keep getting a You have already submitted this form data once every time i submit even testing on different computer and got that message right out the box. any ideas on how to fix?

James says:

Hi Rob,

It’s possible the data isn’t being encoded and stored in your database properly. What are your server specs? PHP version, MySQL version, …

Kym says:

Hi James,

I’m still loving FormBuilder! Hoping you can help though. I could have sworn that it was possible to have users redirected to a different page on my blog after submitting a form, but I am now seeing the only way to do that is select the “action” of the form to be redirect – which says it does not kick an e-mail of the form results to me. I need the form results! Am I mis-understanding?

I would like my users to be able to submit my form, have the results of my form be e-mailed to me, and the user is redirected to a “thank you” page that I customize.

Again, I swore this was possible… but I can’t seem to figure out how to do it nor can I find it in the documentation.

Thanks in advance for your reply.

Kym

James says:

Hi Kym,

Yes, it is totally still possible to do what you’re wanting to. You would use the regular form-to-email action (the default) and add a followup_page field as one of the fields on the form.

“followup page: Special field just for indicating a followup url, once the form has been submitted. Put the url you want people to be redirected to in the field value.”

James W.

Hello
I love the ease and simplicity of FormBuilder in the WordPress arena, thank you. I am looking for a way to enable the customer to attach an entry form to their form submission. Will FormBuilder let me do this, and can you point me in the right direction? Thanks again
Andrew Walker

James says:

At this point, FB doesn’t support attaching files to forms. It’s a feature we’re considering, but has some potential for security holes.

Premine says:

Hello, great work !!!.
One little question, i’m trying to use html on autoresponses’ Messages text but no success. Any suggestion?

James says:

Hi Premine,

At this point, FB doesn’t send HTML autoresponses. Good feature suggestion though.

James W.

I want my selection dropdown fields to produce

Alabama

Instead of

Alabama.

Can I use a pipe for this, entering Alabama|Alabama into the field values when I build the form? If not, is there another method?

Looks like my HTML got stripped there…

I want <option value=”Alabama”>Alabama</option>

instead of

<option value=”1″>Alabama</option>

Line 764 in formbuilder.php kind of implies this, but the only documentation I can find is related to version .75

James says:

Hi Dennis,

FB should actually be translating “option value=1″ into “Alabama” when the form is submitted. You can still use the pipe to specify an alternate value to be submitted than what is displayed to the visitor, however it will still be shown as 1,2,3 on the HTML. The reason for this is to allow connecting sensitive data to the selection options, while not showing that data to the visitor (even in the html).

Is there a reason you need to have the option value in the HTML be the same as what is shown to the visitor?

James W.

Krystyna says:

Can I put Formbuilder into a sidebar widget? I don’t want the form to be all over the page, just on the left or right, and repeated from page to page. I adding a Text widget to a sidebar, and typing in [formbuilder:1], but all I see is
[formbuilder:1], but not the form itself.

James says:

Hi Krystyna,

At this point, FB doesn’t support sidebar widgets. It’s on the future todo list.

James W.

Terry says:

hi….love your plug in, but it is messing a bit with my categories on Vina 1.3.1 theme. Typically, the categories can be pull down menus, where sub-categories can be viewed. Your plug in takes that away. Any ideas as to how to make this theme and your plugin play nice? thanks!

James says:

Hi Terry,

I have no idea why FB would affect the display of your sub-categories. Is it possible that it is a CSS related problem?

James W.

Rob says:

hi…your plug-in looks promising, but I am having the “ERROR. Your form failed to save.” and can’t create auto responders problems as well. I’ve checked for the process that runs the application pool having full control on all the magento files and directories (at least for now).

OS: Windows Server 2008
PHP: Version 5.2.9-2
MySQL: 5.1.33

Rob says:

oops – wordpress

James says:

Hi Rob,

We have had a number of issues with running FB under Windows Server in the past. Looks like we still have some work to do in that regard. It’s an ongoing problem that I have been working to diagnose and fix but for now you may need to avoid FB, or run on a *nix server instead.

James W.

Carl Larson says:

Is it possible to have the subject line of the email pull data from one of the drop down boxes on the form?

James says:

Hi Carl,

There were some major security holes introduced when we allowed that sort of functionality, so for now, it is not allowed.

James W.

Anne says:

I have a ‘form to email’ form that I want to associate with an autoresponder. My e-mail setup works properly as I get the form data, but no autoresponse seems to be sent, as there is only the message to me in the mail logs. My form does contain a field with ‘email address’ as a required data type. What can I check?

James says:

Hi Anne,

Can you verify that you have followed all the steps here:
http://truthmedia.com/wordpress/formbuilder/documentation/formbuilding-103/

If so, you may want to look through the PHP logs and see if there were any PHP related errors when you filled out the form.

James W.

Rob says:

I’ve been struggling trying to figure out a way to allow respondents to choose as many answers as they want from the answer choices using checkboxes. Like a… “Choose all that apply” question.

James says:

Hi Rob,

The best way to do that, as far as I am aware, is to create a comment field in the form describing what people should do with the checkboxes, then add individual checkbox fields for each item you want people to be able to check off. The Field Names should all be different.

James W.

I added formbuilder to a customers website prb4u.com. I keep getting this error:

Fatal error: Cannot redeclare ku9g() (previously declared in /home/content/p/r/b/prb4u/html/wp-content/plugins/formbuilder/formbuilder_autoresponse_functions.inc.php(1) : eval()’d code:1) in /home/content/p/r/b/prb4u/html/wp-content/plugins/formbuilder/extensions/formbuilder_xml_db_results.class.php(1) : eval()’d code on line 1

I cannot even get back into admin to take the form off.

Any suggestions? This is urgent

James says:

Hey Scott,

Looks like you have other problems on your site than just FB. I don’t think FB defines any fields or functions named ku9g.

I recommend you install a fresh copy of FB and see if that helps.

James W.

Shannon says:

Again, thank you for this plugin. I am using version .81 and right now one of the problems I am having is with international phone numbers and international postal codes. If I select phone number in the Required Data field it appears to default to USA phone number formatting and I receive compliants from international visitors that they cannot enter their info in that field.

When I set it to any text or any number I get a number that looks like: 3.74247E+11 in the field when I bring it into Excel. I can reformat the column in Excel, but I was wondering if their is a work around in the formbuilder panel? I also had to set the Zip field to any text because while US zips are numeric international zips are alpha-numeric. Has this changed with version .82?

Thank you.

James says:

Hi Shannon,

The algorithm used by FB to check phone numbers simply checks to ensure that the data entered consists only of the numbers 0-9, spaces, parentheses () and dashes. I will ensure that future versions also include + as a valid character. Are there any others that might be used by your clients in international numbers?

James W.

Shannon says:

I think that will do it – including the + symbol as a valid character to allow for international phone numbers.

Right now I am trying to upgrade to .82 and it says:
Plugin upgraded successfully.
Attempting reactivation of the plugin
….then the Reactivation fails and I get the following message:

Plugin failed to reactivate due to a fatal error.

Parse error: syntax error, unexpected $end in /usr/local/www/data/testpress/wp-content/plugins/formbuilder/formbuilder.php on line 210

But when I look at formbuilder.php line 210:

// Manual entries in the form of [formbuilder:5] where 5 is the ID of the form to be displayed.

I do have forms that are manually entered, but not form 5.
Any ideas. The plugin is there and displays as .82, but it will not Reactivate.

Thank you.

miles says:

Hi,

Im trying to incorporate a paypal buy button on the response page of a form.

However, the form gets all jumbled up.

Is there someway I can modify this so that it doesn’t jumble everything ????

Miles.

miles says:

Oooops. That wasn’t clear. My apologies.

Im trying to incorporate a paypal buy button on the response page of a form, on the response page the thank you text shows fine, however the paypal buy button form gets all jumbled up and doesn’t display properly.

Is there any way around that ????

James says:

Hi Miles,

Sorry about the delay in response but as FormBuilder is a side project for us and we don’t charge you for support, there is only so much time I can dedicate to it.

In answer to your question, perhaps you could use a followup page containing your Paypal button instead of just the thank-you text. I’ve documented how to do that here:
http://truthmedia.com/wordpress/formbuilder/documentation/frequently-asked-questions/#followup

Hope this helps,
James W.

miles says:

thanks that did the trick….sorry for the attitude.

Sean says:

Hello!
I have created a form that appears to be working correctly. When I hit “send” I do not get any errors and I get my autoresponse. But I never see the email in my inbox or in SPAM. I can’t figure out what is going wrong. The form is on a password protected page (password= “test”).

http://timbuktoons.com/?page_id=42

James says:

Hi Sean,

The only reason I can think of that would cause this to happen is that you have the wrong email address in the form recipient field. The sending of the autoresponse and form data use exactly the same code so in theory, if one works, the other should too… unless the email address is wrong.

Any other symptoms that might help diagnose this?

James W.

David says:

just giving some love to you guys.

Awesome plugin! ticked all the boxes for my requirements straight out of the package.

Love these features
- split form on multiple pages
- autoresponders
- personalising autoresponders

keep up the good work.

David.

James says:

Thanks David,

That’s encouraging to hear the positive side too. Glad you’re enjoying use of the plugin.

Have a good one,
James W.

Michelle says:

Hello fellow Canadian!
Thank-you for the formbuilder – it is much appreciated. My question is – is there a way to allow readers to upload image, video or music files when filling out the form? I am using formbuilder to collect entries for a multimedia festival.

Thanks for your reply :)

James says:

Hi Michelle,

Sorry, not at this time. We don’t allow file uploads due to the potential for security holes.

James W.

Andrew says:

What a great plug-in! Thanks.

I’m getting a minor issue. When ammending the Field Values on a Selection Dropdown, multiple ‘selected’ entries are retained:

1
2
3
4

As there is currently no way of defining the default value to be selected, it looks like I will have to delete the fields and start again. Is there any other way?

Thanks,

Andrew

James says:

Hi Andrew,

I’m not sure as I understand what the problem is you’re experiencing. Could you elaborate a bit more?

James W.

miles says:

has anyone noticed that there have been no responses to the questions that have been posed here ? I haven’t gotten a response to my question, has anyone else ?????

ashia says:

Hello, I’m wondering whether it’s possible to use Formbuilder to insert a form into a sidebar widget. I tried doing this by using the text widget and entering the following code, but id didnt work. Is there another way to do this?? Thanks for your help!

James says:

Hi Ashia,

Not at this time.

James W.

Shannon says:

Trying to use the Followup page feature:

When I leave the thankyoutext area in the Form Control area blank and instead select a followup page and fill in the URL that I want people to go to when they hit the submit button it briefly returns them to the form page before sending them to the designated Followup page.

I have the following items selected on the form build page:

field type: followup page
field name: -left blank-
field value: http://www.mywebsite.com/thank-you/
field label: -left blank-
Required data: -none selected-
error message: -left blank-

I want the followup page to be the thank you text. I have tried different variations, but it keeps returning to the form page before redirecting to the followup page.

Any ideas?

Thank you.

James says:

Hi Shannon,

That is normal behaviour. We are actually working on an improved version of FB which should help to resolve that and many other problems people have experienced. I will post on this blog when it is complete.

James W.

tamer says:

Hello,
Great job, this is very useful.
When someone send a form, i’d like to redirect to a “thankyou page”.
How can i make it ?

Steven says:

Hey there, James, thank you for the plugin -
Quick issue;
I’ve created a form, and while I was trying to test to make sure it works I keep getting an error message saying that I’ve missed or had mistakes in a required field, however it doesn’t tell me what field and they’re all filled in correctly. Any ideas?

Steven says:

Update – the issue appears to be with the Captcha function

James says:

Hi Steven,

Is there anything in your PHP logs that might indicate the source of the problem? I suspect that it’s not setting up the session properly, which would indicate to me that a different plugin is breaking the captcha’s ability to set a session.

James W.

mogmismo says:

Please take a look at this post in shopp’s support forum. Apparently, your plugin and the shopp plugin are competing for the session. Can you possibly work w/ the author so we can use formbuilder and shopp at the same time?

http://forums.shopplugin.net/topic/empty-cart-in-new-default-install-after-add-to-cart

Thanks,

-M.

James says:

Hi Mogmismo,

Thanks for that tip. I have emailed a request to connect with tech people at Shopp, so we’ll see what they say.

Have a good one,
James W.

Trish says:

Hi James,

First of all I would like to say it’s a really great plugin!

I’ve been translating it to Croatian, and couldn’t find where to translate labels for the form such as: NAME, SUBJECT, THANKYOUTEXT, FIELD TYPE, FIELD NAME, etc.

Is there a way I can translate them?

James says:

Hi Trish,

At this point it is not possible to translate those labels. I have been working lately on a new version of FB which should fix problems like this, but it may be a little while in coming.

James W.

Nicole says:

I’m using the FormBuilder on my site. When I choose ‘valid url’ in the REQUIRED DATA field, it doesn’t work the way I want it to. I just want people to be able to fill out (i.e.) http://www.mydomain.com/ instead of what they have to fill in now: http://www.mydomain.com/somepage.html (but that the last one is also possible). Is it possible to change it somewhere in the coding? And maybe an idea to include this in a newer version?

Looking forward to your reply.

Thanks,
Nicole

admin says:

Hi Nicole,

Good call. I’ll make sure that is fixed in the next release.

James W.

IvoEz says:

Hey, really awesome work, congrats!

I have a small problem, i’m not getting notifications of new submissions; the records are being saved in the database, i can see the reports online, but i’m not being notified with either mail methods. I’m on a godaddy server…

Have you experience something like this?

thanks for the pluggin!

czyadgrl says:

I am having the same issue. Everything seems to be set up correctly according to the documentation. In my test, the person submitting the form is receiving the confirmation email I set up, the data is being stored online, but I am NOT receiving the emails.

Other than that, I’m enjoying this plug-in!

admin says:

Hi IvoEz and czyadgrl,

We have had some problems with email not going through due to various server configuration problems. It’s interesting that your autoresponses are going through, but the form notifications are not. I wonder what the difference is.

I’ll have to do more checking,
James W.

Matt says:

Hey,

I’m getting an error with the plugin viewing the console via Firebug:


jQuery(".fb-date-pick").datePicker is not a function
startDate:'01/01/1900'\n

It seems to be working okay, but it is causing some other plugins to not work. When I disable it everything else works fine. If possible, please advise.

Thanks in advance and great work!

Matt

admin says:

Hi Matt,

We’ve had some issues come up with the jQuery date picker code not playing well with other JavaScript libraries. I’m still trying to diagnose exactly what’s going on and why this is happening.

James W.

Ebru says:

Hello,
I have a question:
I´m using your formbuilder as a litte shop to buy 3 different books. So now I´m working on the Personalized Autoresponse.

A Customer can buy also more exemplars of one book. In the Autoresponse I prompt the Customer to pay the price.

can I made this:

number of books multiply with price of the book

thanks in advance for your help!

Ebru B.

admin says:

Hi Ebru,

At this point FB doesn’t support any sort of mathematical functions on the autoresponse values.

Sorry,
James W.

Dave says:

I have a couple Yes/No radio buttons that I want to be mandatory but do not have an initial value checked. Is there a way to do that?

Thanks much.

admin says:

Hey Dave,

I think the radio buttons are automatically checked by default. You COULD however use a dropdown list with no default value, and require some text as a valid response.

James W.

GB says:

Thanks for a great form app.

Question, how can I place the form fields with the cells of a customized table that I make?

Appreciate the help and especially the work you are doing on the truthmedia project.

GB

GCRaya says:

I have this same question. I have an excel doc for an order form. I would like to use it, more or less. Is there a way to use tables in this version? Maybe a suggestion for the next version.
Thanks for the great plugin.

admin says:

Hi GB,

You should be able to export form results for a given form from the database. If you export results from a single form, they should format very nicely as an easily importable CSV file.

Does that help?
James W.

GB says:

Thank you for responding.

I suppose that would help programmers and people who understand advanced CSV editing, which excludes me. So here is a suggestion:

What about adding a field name tag, (for each field entry the user creates), that can be inserted anywhere in a page or table — obviously nested within the primary form tags. In this way forms would become highly, and easily customizable, by simply adding the tags where we want. This would really help as I have clients that need forms with hundreds of fields.

Payam says:

Hi everyone just a quick question. Do you know if you can put a form inside a widget if so how. I want to put a small contact form on a left side bar of http://www.nichewills.co.uk

Any other sugestions about this site are also welcomed. Also how can i put in two colums forms? and if you have some example codes which i can paste in it would really help

Thanks Again

admin says:

Hi Payam,

At this point, that is not possible, however you can manually code a form onto your sidebar using code found here:
http://truthmedia.com/wordpress/formbuilder/documentation/formbuilding-104/

James W.

Shannon says:

With the new release of Formbuilder my Autoresponder messages are displaying:

wordpress@companyname.com …instead of
me@companyname.com.

It is set to: me@company.com in the from field for the AutoResponder…it is just not recognizing it.

How do I correct this fast! This does not look good at all.

Thank you for your help.

Shannon says:

Is this a plugin problem or should I check my email configuration?

Thank you

admin says:

Hi Shannon,

Sorry about the delay. This is probably caused by the fact that you’re using the alternate email processing mode. This mode changes the email sender along with some other variables to be more compatible with people’s mailservers. Switching to the normal mode *should* solve the problem.

James W.

Shannon says:

Should I just reinstall .81?

Thank you

Maciek says:

Hello
I have a blog that is used to inform my clients (I rent office space) about malfunctions in my currently renovated office building (problems with heating, AC, lighting, etc) but I also allow them to send some feedback – they can, using form created by your formbuilder, submit discovered malfunctions and bugs in software (this is a KNX smart building). I receive the results it on my email but they’re also stored on the server as XML database. I’d like to present those results on one of the pages on my WPblog or do whatever necessary to make it visible to others – let’s say to maintenance crew.

When I login as an admin I can see “Stored Results” link, which is great and this is, more or less, what I need. How to create a page that shows stored results without need to login as an administrator?

Maybe it’s not a question for your team.. is it? Maybe I should ask someone who is a specialist in XML databases? Your forms work good and I only don’t know how to postprocess them.. I would appreciate any help :)

admin says:

Hi Maciek,

FB currently has no controls to support something like that. It sounds like something you’d need to hire a PHP programmer to build for you.

Sorry,
James W.

Chris says:

Thanks for the great plugin. When using the Alternate Action PHP is throwing an error, but at the same time passing the $_POST vars to my “alternate script”. The error is:

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /my/dir/path

However, if I simply put print_r($_POST) in my alternate page then it will happily print the contents of that array, but none of the arrays. cURL has always baffled me so I’m unsure on how to proceed.

admin says:

Hi Chris,

Sounds like your server is not configured to use CURL to pull external web resources. You may need to ask your web host to enable it.

James W.

Chris says:

James,

Thanks for the response. Our host would not allow that, but I was able to use the alternate response to submit a form date to Salesforce successfully by custom coding the form processor.

If anyone is interested, please contact me at “The Dog and Cat Cancer Fund”

Thanks,
Chris

Jonathan says:

Great work on the plug-in, works like a charms as far as I see.
Feature suggestion: use Askimet instead of captcha to check for spam.
And a notification for: http://truthmedia.com/wordpress/formbuilder/sample-form -> no form present.

Maria says:

Hi,
since last week or more, forms are not going through, I’ve tried everything to fix it, believe me, everything but it won’t work :S

admin says:

Hi Maria,

You may want to connect with your hosting provider to find out if they can help diagnose the problem, or have information about something that might have changed.

James W.

WP Development Blog

View our latest plugins and themes on our blog. You may also subscribe to our RSS feed.

Plugins