r972: Rebranding from Iris Studios to Blue Static
[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 // ///////////////////////// PATH TO ISSO
60 // -------------------------------------------------------------------
61 // The full, hard path to the ISSO framework on your server. This
62 // should end in a trailing slash!!
63 $pathtoisso = '/htdocs/isso/';
64
65 // ###################################################################
66 // ///////////////////////// TABLE PREFIX
67 // -------------------------------------------------------------------
68 // If you want to have your database tables to have a certain prefix
69 // set that here. Make sure you include the underscore!
70 // Example: $tableprefix = 'bugs_';
71 $tableprefix = '';
72
73 // ###################################################################
74 // ///////////////////////// COOKIE PREFIX
75 // -------------------------------------------------------------------
76 // If you need to change the prefix for the cookies set by the tracker
77 // you can change that here. In most cases, this can be left at the
78 // default value. You only need to change this if you have a good
79 // reason.
80 $cookieprefix = 'bt';
81
82 /*=====================================================================*\
83 || ###################################################################
84 || # $HeadURL$
85 || # $Id$
86 || ###################################################################
87 \*=====================================================================*/
88 ?>