r63: Updated initial copyright year from 2003 to 2002
[bugdar.git] / includes / config.php.new
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # Renapsus [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # All parts of this file are ©2002-[#]year[#] Iris Studios, Inc. No # ||
7 || # part of this file may be reproduced in any way: part or whole. # ||
8 || # --------------------------------------------------------------- # ||
9 || # ©2002 - [#]year[#] Iris Studios, Inc. | http://www.iris-studios.com # ||
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 Renapsus 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 // ///////////////////////// TABLE PREFIX
51 // -------------------------------------------------------------------
52 // If you want to have your database tables to have a certain prefix
53 // set that here. Make sure you include the underscore!
54 // Example: $tableprefix = 'bugs_';
55 $tableprefix = '';
56
57 // ###################################################################
58 // ///////////////////////// COOKIE PREFIX
59 // -------------------------------------------------------------------
60 // If you need to change the prefix for the cookies set by the tracker
61 // you can change that here. In most cases, this can be left at the
62 // default value. You only need to change this if you have a good
63 // reason.
64 $cookieprefix = 'bt';
65
66 /*=====================================================================*\
67 || ###################################################################
68 || # $HeadURL$
69 || # $Id$
70 || ###################################################################
71 \*=====================================================================*/
72 ?>