It sure sounds like a config problem.
The config file is located here: /FormTools/global/config.php
If you can't find the config file, you need to make one manually. During your installation, in step 4, the system tries to create the config file and puts all the necessary data on the web page for you to copy and paste in to a text file if the system isn't able to create it for you.
Read more about this in http://docs.formtools.org/installation/?page=step4
The information you need to put in the config.php file is like this:
The config file is located here: /FormTools/global/config.php
If you can't find the config file, you need to make one manually. During your installation, in step 4, the system tries to create the config file and puts all the necessary data on the web page for you to copy and paste in to a text file if the system isn't able to create it for you.
Read more about this in http://docs.formtools.org/installation/?page=step4
The information you need to put in the config.php file is like this:
PHP Code:
<?php
// main program paths - no trailing slashes!
// The root url is the exact web adress to your formtools folder.
// Root dir is the exact folder adress on your server. This is just an example. Ask your provider for the correct address if in doubt.
$g_root_url = "http://www.website.com/formtools";
$g_root_dir = "/Applications/MAMP/htdocs/webfolder/formtools";
// database settings.
$g_db_hostname = "localhost";
$g_db_name = "mydatabase";
$g_db_username = "root";
$g_db_password = "root";
$g_table_prefix = "ft_";
?>