What happens when you try to create an entry? Can you please provide more information?
sswells on "[Plugin: Formidable Forms] Formidable Pro 1.07.08 Problem"
odisey.nfo on "[Plugin: Formidable Forms] Formidable Pro 1.07.08 Problem"
it reload the page without success message and your at the beginning of form like loop.
entry is not created!
sswells on "[Plugin: Formidable Forms] Formidable Pro 1.07.08 Problem"
Do you have any information on how we might replicate? Or maybe information about your server? Are you running a Windows server? What version of PHP?
allanlud on "[Plugin: Formidable Forms] Messages After Updating Plugin"
Hi,
I am running some updates on a website for someone (so far 20 plugins, 4 themes and WordPress itself from 3.1.3 to 3.9.1).
After I update the Formidable Plugin I have the following messages at the top of my screen:
Your Formidable database needs to be updated.
Please deactivate and reactivate the plugin to fix this or Update NowThis site has been previously authorized to run Formidable Pro.
Install the pro version or deauthorize this site to continue running the free version and remove this message.
I am updating everything in a sub folder using a duplicate version of the site before updating the live site.
Any help on this much appreciated.
Thanks,
Al.
sswells on "[Plugin: Formidable Forms] Messages After Updating Plugin"
You should click the link in that box to update your database, and follow the instructions here to update to pro:
http://formidablepro.com/knowledgebase/manually-install-formidable-pro/
Can you please post in our help desk for further support?
sswells on "[Plugin: Formidable Forms] Formidable Pro 1.07.08 Problem"
This change fixed the problem on another site. It would be great if you could try this small change in formidable/classes/models/FrmEntry.php. Can you change method_exists('Akismet', 'http_post') in line 412 to:
is_callable('Akismet::http_post')
Does that solve the problem for you?
allanlud on "[Plugin: Formidable Forms] Messages After Updating Plugin"
Thanks for this.
shooter56 on "[Plugin: Formidable Forms] Putting text between Formidable fields"
I'm wondering if there is a way to put text blocks between Formidable form fields. I have a rental application and I would like to put some copy midway through the form between one group of fields and another group. Is there a way to do this? Thanks in advance for your help.
jamie.wahlin on "[Plugin: Formidable Forms] Putting text between Formidable fields"
If you have the paid version of Formidable, you can add a Section Heading field or an HTML field for this. If you do not, you can add some text in your form's Settings > Customize HTML
For further assistance, you will need to log in with a paid account and create a topic in our help desk:
http://formidablepro.com/help-topics/
shooter56 on "[Plugin: Formidable Forms] Putting text between Formidable fields"
Thanks for your reply. The "Customize HTML" option did exactly what I needed. I appreciate your help.
odisey.nfo on "[Plugin: Formidable Forms] Formidable Pro 1.07.08 Problem"
After update from Formidable Pro 1.07.08 to 1.07.09 all problem was fix!
Tnx for your help Steph
Ian Dunn on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
When I send a test message while logged in, it works fine. If I log out and try again I get this error:
There was a problem with your submission. Errors are marked below.
You do not have permission to do that
It looks like that's happening because the plugin is using nonces on the form, which aren't really appropriate in this situation. The nonce gets cached and reused beyond its expiration, which causes the error. The nonce should only be added/verified if the user is logged in.
Jetpack made a similar fix recently in #1859-plugins. kovshenin wrote about this in more detail at http://kovshenin.com/2012/nonces-on-the-front-end-is-a-bad-idea/
sswells on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
Interesting. Thanks for the resources. Here's a change that will be included in the next release. Line 344 of formidable/classes/models`/FrmEntry.php changed from:
if ( !isset($values['frm_submit_entry']) || !wp_verify_nonce($values['frm_submit_entry'], 'frm_submit_entry_nonce') ) {
to:
if ( !isset($values['frm_submit_entry']) || (is_user_logged_in() && !wp_verify_nonce($values['frm_submit_entry'], 'frm_submit_entry_nonce')) ) {
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum's parser.]
Thanks again!
sswells on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
Actually, let's just do this:
if ( !isset($values['frm_submit_entry']) ) {
Ian Dunn on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
Hmm, I'm not sure I understand. If you're removing the wp_verify_nonce()
check -- and, presumably, the corresponding wp_nonce_field()
call -- then why keep the isset( $values['frm_submit_entry'] )
check? Won't that always fail?
I would think that you'd either want to remove all of it completely, or wrap both parts in is_user_logged_in()
, the way that Jetpack did. Maybe I'm missing something, though?
sswells on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
Final answer... ignore my second response. The first is what we'll stick with. The nonce field will be on the front end regardless of whether the user is logged in or not, but it will only be checked if they are logged in.
We may completely remove it after more research, but we'll need to determine which would be best.
Ian Dunn on "[Plugin: Formidable Forms] 'You do not have permission to do that' error"
Sounds great, thanks :)
renemc on "[Plugin: Formidable Forms] Resizing ReCaptcha field"
Hi, I was just wondering if it was possible to resize the recaptcha field? My sidebar is roughly 200px wide so it doesn't fit. How would I go about making that change? Any help would be greatly appreciated!
sswells on "[Plugin: Formidable Forms] Resizing ReCaptcha field"
Can you please take a look at this related topic, and post in our help desk with any further questions.
http://formidablepro.com/help-desk/resize-recaptcha/
ockographics on "[Plugin: Formidable Forms] Saving User-entered data for later completion"
I have a long form I want to do. If connection is lost, or if person wants to finish later, can this be set up to save data so person won't have to re-enter? If so, on free or only paid?