Configuration File Overview

Top  Previous  Next

Form Processor Pro is tuned and configured by special configuration file located in Form Processor Pro directory and named as config.php. It is a simple INI-file where you can specify all your forms and their global and local settings. This file sets basic variables to make Form Processor Pro work correctly. You can disable certain variables by putting ‘#' in the beginning of the line with variable. All symbols put after ‘#' are not treated as data and are mostly used as comments.

 

Note:
Please, use plain text editor to edit config.php to prevent adding unnecessary lines and symbols to it.

Each setting may be applied globally as well as only for a custom form.

Form descriptions in configuration file start by declaring a new, INI-file style, section.

Example:

[myform]
page = ../index.html
page = ../preview.html
page = ../thank-you.html
email = ../emailtpl.txt

In the configuration above we have set up the form named “myform” that has 3 pages and sends one email after filling is over.

 

Note:
In form names you can use only letters, numbers, underscore and dash characters.