<?PHP $dbhost = "localhost"; // Database Server machine $dbname = "std"; // Database Name $dbuser = "screaming"; // Database User $dbpass = "password"; // Database Password $todotable = "todo"; // Main database table $commentstable = "comments"; // Database Table For Comments $categorytable = "category"; // Database for the categories $usertable = "user"; // User table store $themetable = "theme"; $adminEmail = "hide@address.com"; // The administrator's email address $editthemes = 1; // Allow users (as opposed to admins) to edit themes? $allow_internet_signups = 1; // Allow people to sign up via the Internet? $collect_email_address = 1; $collect_name = 1; $collect_phone_number = 1; $collect_address = 1; $collect_city = 1; $collect_zip = 1; $collect_country = 1; $defaultpassword = "changeme"; // Default password for the $adminuser account. This // is the password that the $adminuser account will // be set to if/when it doesn't exist. It doesn't need to // constantly be SET to the $adminuser account, it's just // what it will be set to initially. // NOTE: This is only utilized when $auth = 1. $adminuser = "steve"; // The username of the Administrator. This account will: // 1) always be checked for its existance and its membership // to the admin group. (If you set $auth = 1, make sure // this account has a good password!!) // 2) be used as the default color scheme on the login page $multiuser = 0; // Add multiuser interactivity functionality (1=yes, 0=no)? // In other words, do you want to be able to share tasks // between users? $auth = 1; // Provide Authentication (1=yes, 0=no)? // NOTE: If you set $multiuser = 1, then you probably // want to set $auth = 1 as well. Otheriwse, // multiuser functionality is useless and its // functionality just takes up valuable screen // real estate. $UncategorizedTasks = "Uncategorized"; // Category to create for all tasks someone else assigns to you // NOTE: This is only used when $multiuser = 1. ?>