- Update the copyright notices to use the correct year and not a non-ASCII symbol
[bugdar.git] / includes / config.php.new
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2004-2008 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 // ###################################################################
23 // ///////////////////////// SERVER NAME
24 // -------------------------------------------------------------------
25 // This is the name of the server you use to connect to your MySQL
26 // database. In most cases, this can be left as 'localhost'
27 $servername = 'localhost';
28
29 // ###################################################################
30 // ///////////////////////// USER NAME
31 // -------------------------------------------------------------------
32 // This is the name of the user who has access to your MySQL database.
33 // Blue Static can not provide this information, your host must.
34 $username = 'root';
35
36 // ###################################################################
37 // ///////////////////////// USER PASSWORD
38 // -------------------------------------------------------------------
39 // This is the password for the user who has access to MySQL. Blue
40 // Static can not provide this information, your host must.
41 $password = '';
42
43 // ###################################################################
44 // ///////////////////////// DATABASE NAME
45 // -------------------------------------------------------------------
46 // This is the name of the MySQL database that Bugdar will
47 // use to store information in. You or your host will have to make it.
48 $database = 'bugdb';
49
50 // ###################################################################
51 // ///////////////////////// UTF8
52 // Set this to FALSE if you do not want to use UTF8 as your encoding
53 // It is recommended that you use UTF8, however. Do NOT set this to
54 // true if your database is not UTF8 (all new installations 1.2 and
55 // later do use UTF8)
56 $utf8 = true;
57
58 // ###################################################################
59 // ///////////////////////// MYSQL PCONNECT
60 // -------------------------------------------------------------------
61 // Set this to 1 if you want to use MySQL persistent connect. Do not
62 // change this unless you know what you're doing and you need to do
63 // it!
64 $usepconnect = 0;
65
66 // ###################################################################
67 // ///////////////////////// TABLE PREFIX
68 // -------------------------------------------------------------------
69 // If you want to have your database tables to have a certain prefix
70 // set that here. Make sure you include the underscore!
71 // Example: $tableprefix = 'bugs_';
72 $tableprefix = '';
73
74 // ###################################################################
75 // ///////////////////////// COOKIE PREFIX
76 // -------------------------------------------------------------------
77 // If you need to change the prefix for the cookies set by the tracker
78 // you can change that here. In most cases, this can be left at the
79 // default value. You only need to change this if you have a good
80 // reason.
81 $cookieprefix = 'bt';
82
83 ?>