<?php /*=====================================================================*\ || ################################################################### || # Bugdar [#]version[#] || # Copyright ©2002-[#]year[#] Blue Static || # || # This program is free software; you can redistribute it and/or modify || # it under the terms of the GNU General Public License as published by || # the Free Software Foundation; version [#]gpl[#] of the License. || # || # This program is distributed in the hope that it will be useful, but || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for || # more details. || # || # You should have received a copy of the GNU General Public License along || # with this program; if not, write to the Free Software Foundation, Inc., || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA || ################################################################### \*=====================================================================*/ // ################################################################### // ///////////////////////// SERVER NAME // ------------------------------------------------------------------- // This is the name of the server you use to connect to your MySQL // database. In most cases, this can be left as 'localhost' $servername = 'localhost'; // ################################################################### // ///////////////////////// USER NAME // ------------------------------------------------------------------- // This is the name of the user who has access to your MySQL database. // Blue Static can not provide this information, your host must. $username = 'root'; // ################################################################### // ///////////////////////// USER PASSWORD // ------------------------------------------------------------------- // This is the password for the user who has access to MySQL. Blue // Static can not provide this information, your host must. $password = ''; // ################################################################### // ///////////////////////// DATABASE NAME // ------------------------------------------------------------------- // This is the name of the MySQL database that Bugdar will // use to store information in. You or your host will have to make it. $database = 'bugdb'; // ################################################################### // ///////////////////////// UTF8 // Set this to FALSE if you do not want to use UTF8 as your encoding // It is recommended that you use UTF8, however. Do NOT set this to // true if your database is not UTF8 (all new installations 1.2 and // later do use UTF8) $utf8 = true; // ################################################################### // ///////////////////////// MYSQL PCONNECT // ------------------------------------------------------------------- // Set this to 1 if you want to use MySQL persistent connect. Do not // change this unless you know what you're doing and you need to do // it! $usepconnect = 0; // ################################################################### // ///////////////////////// TABLE PREFIX // ------------------------------------------------------------------- // If you want to have your database tables to have a certain prefix // set that here. Make sure you include the underscore! // Example: $tableprefix = 'bugs_'; $tableprefix = ''; // ################################################################### // ///////////////////////// COOKIE PREFIX // ------------------------------------------------------------------- // If you need to change the prefix for the cookies set by the tracker // you can change that here. In most cases, this can be left at the // default value. You only need to change this if you have a good // reason. $cookieprefix = 'bt'; /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>