Online Chat
 Call Us: 
1-877-744-1221
Browse Submit a Ticket
 
Advanced Search
Tools
Rss Categories

Configuration File Overview

Author: Eileen Wilde Reference Number: AA-00117 Views: 9616 Last Updated: 08/11/2009 09:44 AM 0 Rating/ Voters

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

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

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

Form descriptions in the 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 configured the form named “myform” progresses through 3 pages (the form page and two others) and sends one email after processing is over.

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