r1389: Forgot to add the template diff
[bugdar.git] / includes / config.php.new
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] 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 [#]gpl[#] 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 // ///////////////////////// MYSQL PCONNECT
52 // -------------------------------------------------------------------
53 // Set this to 1 if you want to use MySQL persistent connect. Do not
54 // change this unless you know what you're doing and you need to do
55 // it!
56 $usepconnect = 0;
57
58 // ###################################################################
59 // ///////////////////////// TABLE PREFIX
60 // -------------------------------------------------------------------
61 // If you want to have your database tables to have a certain prefix
62 // set that here. Make sure you include the underscore!
63 // Example: $tableprefix = 'bugs_';
64 $tableprefix = '';
65
66 // ###################################################################
67 // ///////////////////////// COOKIE PREFIX
68 // -------------------------------------------------------------------
69 // If you need to change the prefix for the cookies set by the tracker
70 // you can change that here. In most cases, this can be left at the
71 // default value. You only need to change this if you have a good
72 // reason.
73 $cookieprefix = 'bt';
74
75 /*=====================================================================*\
76 || ###################################################################
77 || # $HeadURL$
78 || # $Id$
79 || ###################################################################
80 \*=====================================================================*/
81 ?>