May 7, 2015 - Data Collection

Our forms processor, used for data collection, site search forms, etc.

Allows building a form as well as "Views" for retrieving the entries.

Formidable Pro Website

We have a "Pro" licence - key on private page

Added a patch to the theme functions.php to put any uploaded files into a separate directory (based upon the form title):

/*
* organize all Formidable file uploads by the name of the page/post that contains the form 
* see: https://formidablepro.com/knowledgebase/frm_upload_folder/
*/

function frm_custom_upload( $folder ) {
 global $post;
 $folder = 'formidable/' . $post->post_name;
 return $folder;
}
add_filter( 'frm_upload_folder', 'frm_custom_upload' );

To Do

We have referrer-checking nginx config file protection on the entire /uploads/ folder - prevents hot-linking from outside, but could lock down more, such as sending through a PHP script for more protection. See To Do page for more details.

Update about shortcodes within an earlier version - don't think this will affect any of our forms (?)

Comments are closed.