Thanks for your attention!
1. I just downloaded the latest release 1.70+ Stable
2. I only use one database server, a Strato-hosting MySQL server.
3. // Basic Setup
$databasetype = "mysql"; // ADOdb database driver - valid values are mysql, odbc_mssql or postgres
$databaselocation = "localhost"; // Network location of your Database - for odbc_mssql use the mssql servername, not localhost or IP
$databasename = "db404863"; // The name of the database that we will create
$databaseuser = "u404863"; // The name of a user with rights to create db (or if db already exists, then rights within that db)
$databasepass = "*****"; // Password of db user
$dbprefix = ""; // A global prefix that can be added to all LimeSurvey tables. Use this if you are sharing
// a database with other applications. Suggested prefix is "lime_"
// File Locations
$rooturl = "http://{$_SERVER['HTTP_HOST']}/limesurvey"; //The root web url for your limesurvey installation (without a trailing slash).
$relativeurl = "/limesurvey"; // the url relative to you DocumentRoot where is installed LimeSurvey (without a trailing slash). Usually same as $rooturl without http://{$_SERVER['HTTP_HOST']}. Used by Fcked Filemanager
$rootdir = dirname(__FILE__); // This is the physical disk location for your limesurvey installation. Normally you don't have to touch this setting.
// If you use IIS then you MUST enter the complete rootdir e.g. : $rootDir="C:Inetpub
wwwrootlimesurvey"!
// Some IIS installations also require to use forward slashes instead of backslashes, e.g. $rootDir="C:/Inetpub/
wwwroot/limesurvey"!
// If you use OS/2 this must be the complete rootdir with FORWARD slashes e.g.: $rootDir="c:/limesurvey";!
// Site Setup
$sitename = "LimeSurvey"; // The official name of the site (appears in the Window title)
$defaultuser = "matt"; // This is the default username when LimeSurvey is installed
$defaultpass = "*****"; // This is the default password for the default user when LimeSurvey is installed
// Email Settings
$siteadminemail = ""; // The default email address of the site administrator
$siteadminbounce = ""; // The default email address used for error notification of sent messages for the site administrator (Return-Path)
$siteadminname = "Matthew Linares"; // The name of the site administrator
?>