|
From: Benjamin C. <bc...@us...> - 2001-08-23 02:10:21
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv11356
Modified Files:
config.php
Log Message:
Let's make this a little more consistent in formatting and put the stuff more likely to be changed nearer to the top
Index: config.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/config.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- config.php 2001/08/23 01:20:49 1.2
+++ config.php 2001/08/23 02:10:18 1.3
@@ -22,38 +22,36 @@
// ------------------------------------------------------------------------
// $Id$
-define ('INSTALLPATH','/home/bcurtis/public_html/phpbt');
-define ('INSTALLURL','http://localhost/~bcurtis/phpbt');
+define ('INSTALLPATH', '/home/bcurtis/public_html/phpbt');
+define ('INSTALLURL', 'http://localhost/~bcurtis/phpbt');
-
-define ('PHPLIBPATH',''); // If it's not in the include path
+define ('PHPLIBPATH', ''); // If it's not in the include path
define ('JPGRAPH_PATH', ''); // If it's not in the include path
-define ('ONEDAY',86400);
-define ('DATEFORMAT','m-d-Y');
-define ('TIMEFORMAT','g:i A');
-define ('ADMINEMAIL','ph...@be...');
-define ('ENCRYPTPASS',0); // Whether to store passwords encrypted
-define ('THEME','default/'); // Which set of templates to use
-define ('USE_JPGRAPH',0); // Whether to show images or not
+//Database Config
+define ('DB_TYPE', 'mysql'); //using PHPlib file naming
+define ('DB_HOST', 'localhost');
+define ('DB_DATABASE', 'BugTracker');
+define ('DB_USER', 'root');
+define ('DB_PASSWORD','');
+define ('ADMINEMAIL', 'ph...@be...');
+define ('ENCRYPTPASS', 0); // Whether to store passwords encrypted
+define ('THEME', 'default/'); // Which set of templates to use
+define ('USE_JPGRAPH', 0); // Whether to show images or not
define ('MASK_EMAIL', 1); // Should email addresses be plainly visible?
define ('HIDE_EMAIL', 1); // Should email addresses be hidden for those not logged in?
// Should the query list use the severity colors as the row background color (like SourceForge)
define ('USE_SEVERITY_COLOR', 1);
+
// Sub-dir of the INSTALLPATH - Needs to be writeable by the web process
define ('ATTACHMENT_PATH', 'attachments');
// Maximum size (in bytes) of an attachment
// This will not override the settings in php.ini if php.ini has a lower limit
define ('ATTACHMENT_MAX_SIZE', 2097152);
-
-
-//Database Config
-define ('DB_TYPE', 'mysql'); //using PHPlib file naming
-define ('DB_HOST', 'localhost');
-define ('DB_DATABASE', 'BugTracker');
-define ('DB_USER', 'root');
-define ('DB_PASSWORD','');
+define ('ONEDAY', 86400);
+define ('DATEFORMAT', 'm-d-Y');
+define ('TIMEFORMAT', 'g:i A');
require PHPLIBPATH.'db_'.DB_TYPE.'.inc';
require PHPLIBPATH.'ct_sql.inc';
|