r665: Renaming product from "BugStrike" to "Bugdar"
[bugdar.git] / includes / config.php.new
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # Bugdar [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 // ###################################################################
14 // ///////////////////////// SERVER NAME
15 // -------------------------------------------------------------------
16 // This is the name of the server you use to connect to your MySQL
17 // database. In most cases, this can be left as 'localhost'
18 $servername = 'localhost';
19
20 // ###################################################################
21 // ///////////////////////// USER NAME
22 // -------------------------------------------------------------------
23 // This is the name of the user who has access to your MySQL database.
24 // Iris Studios can not provide this information, your host must.
25 $username = 'root';
26
27 // ###################################################################
28 // ///////////////////////// USER PASSWORD
29 // -------------------------------------------------------------------
30 // This is the password for the user who has access to MySQL. Iris
31 // Studios can not provide this information, your host must.
32 $password = '';
33
34 // ###################################################################
35 // ///////////////////////// DATABASE NAME
36 // -------------------------------------------------------------------
37 // This is the name of the MySQL database that Bugdar will
38 // use to store information in. You or your host will have to make it.
39 $database = 'bugdb';
40
41 // ###################################################################
42 // ///////////////////////// MYSQL PCONNECT
43 // -------------------------------------------------------------------
44 // Set this to 1 if you want to use MySQL persistent connect. Do not
45 // change this unless you know what you're doing and you need to do
46 // it!
47 $usepconnect = 0;
48
49 // ###################################################################
50 // ///////////////////////// PATH TO ISSO
51 // -------------------------------------------------------------------
52 // The full, hard path to the ISSO framework on your server. This
53 // should end in a trailing slash!!
54 $pathtoisso = '/htdocs/isso/';
55
56 // ###################################################################
57 // ///////////////////////// TABLE PREFIX
58 // -------------------------------------------------------------------
59 // If you want to have your database tables to have a certain prefix
60 // set that here. Make sure you include the underscore!
61 // Example: $tableprefix = 'bugs_';
62 $tableprefix = '';
63
64 // ###################################################################
65 // ///////////////////////// COOKIE PREFIX
66 // -------------------------------------------------------------------
67 // If you need to change the prefix for the cookies set by the tracker
68 // you can change that here. In most cases, this can be left at the
69 // default value. You only need to change this if you have a good
70 // reason.
71 $cookieprefix = 'bt';
72
73 /*=====================================================================*\
74 || ###################################################################
75 || # $HeadURL$
76 || # $Id$
77 || ###################################################################
78 \*=====================================================================*/
79 ?>