Commit e8bfe1d460844558b62966ba1dc24214b909a1e5

Authored by Michael Joseph
1 parent 874d734b

Reverted to neutral configuration defaults.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2885 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 4 additions and 4 deletions
config/environment.php
... ... @@ -22,9 +22,9 @@
22 22 */
23 23  
24 24 // install path
25   -$default->fileSystemRoot = "C:/eclipse/workspace/knowledgeTree";
  25 +$default->fileSystemRoot = "/usr/local/www/dms";
26 26 // server settings
27   -$default->serverName = "ktjacqui";
  27 +$default->serverName = "change.to.your.hostname";
28 28 // whether ssl is enabled or not
29 29 $default->sslEnabled = false;
30 30 // Change this to reflect the authentication method you are using
... ... @@ -32,14 +32,14 @@ $default->sslEnabled = false;
32 32 $default->authenticationClass = "DBAuthenticator";
33 33 require_once("$default->fileSystemRoot/lib/authentication/$default->authenticationClass.inc");
34 34  
35   -//enable folder hiding flag
  35 +// enable folder hiding flag
36 36 $default->folderHidingFlag = 1;
37 37  
38 38 // Database info
39 39 $default->dbHost = "localhost";
40 40 $default->dbName = "dms";
41 41 $default->dbUser = "dms";
42   -$default->dbPass = "";
  42 +$default->dbPass = "pass";
43 43  
44 44 // Change this to reflect the database you are using
45 45 //require("$default->fileSystemRoot/phplib/db_pgsql.inc");
... ...