home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / dotproject / includes / config-dist.php < prev    next >
PHP Script  |  2004-01-15  |  5KB  |  130 lines

  1. <?php /* $Id: config-dist.php,v 1.27 2004/01/15 17:10:41 gregorerhardt Exp $ */
  2.  
  3. /**  BSD LICENSE  **
  4.  
  5. Copyright (c) 2003, The dotProject Development Team sf.net/projects/dotproject
  6. All rights reserved.
  7.  
  8. Redistribution and use in source and binary forms, with or without modification,
  9. are permitted provided that the following conditions are met:
  10.  
  11. * Redistributions of source code must retain the above copyright notice,
  12.   this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright notice,
  14.   this list of conditions and the following disclaimer in the documentation
  15.   and/or other materials provided with the distribution.
  16. * Neither the name of the dotproject development team (past or present) nor the
  17.   names of its contributors may be used to endorse or promote products derived
  18.   from this software without specific prior written permission.
  19.  
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  21. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
  24. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  26. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  27. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  
  31. **/
  32.  
  33. /*
  34.     * * * INSTALLATION INSTRUCTIONS * * *
  35.  
  36.     YOU MUST customise "config-dist.php" to your local system:
  37.  
  38.     1) COPY config-dist.php to "config.php" [if it doesn't exist]
  39.  
  40.     2) EDIT "config.php" to include your database connection and other local settings.
  41. */
  42.  
  43. // DATABASE ACCESS INFORMATION [DEFAULT example]
  44. // Modify these values to suit your local settings
  45.  
  46. $dPconfig['dbtype'] = "mysql";      // ONLY MySQL is supported at present
  47. $dPconfig['dbhost'] = "localhost";
  48. $dPconfig['dbname'] = "dotproject";  // Change to match your DotProject Database Name
  49. $dPconfig['dbuser'] = "dp_user";  // Change to match your MySQL Username
  50. $dPconfig['dbpass'] = "dp_pass";  // Change to match your MySQL Password
  51. $dPconfig['dbport'] = "";  // Change to match your Db Port or use the standard value of 3306 if string is empty
  52.  
  53. // set this value to true to use persistent database connections
  54. $dPconfig['dbpersist'] = false;
  55.  
  56. // check for legacy password
  57. // ONLY REQUIRED FOR UPGRADES prior to and including version 1.0 alpha 2
  58. $dPconfig['check_legacy_password'] = false;
  59.  
  60. /*
  61.  Localisation of the host for this dotproject,
  62.  that is, what language will the login screen be in.
  63. */
  64. $dPconfig['host_locale'] = "en";
  65.  
  66. /*
  67.  Localisation of the currency-symbol.
  68.  For the EURO sign symbol set to ... = "€";
  69.  Check http://www.w3.org/TR/html401/sgml/entities.html
  70.  for information about html special characters.
  71. */
  72. $dPconfig['currency_symbol'] = "$";
  73.  
  74. // default user interface style
  75. $dPconfig['host_style'] = "default";
  76.  
  77. // local settings [DEFAULT example WINDOWS]
  78. $dPconfig['root_dir'] = "C:/apache/htdocs/dotproject";  // No trailing slash
  79. $dPconfig['company_name'] = "My Company";
  80. $dPconfig['page_title'] = "dotProject";
  81. $dPconfig['base_url'] = "http://localhost/dotproject";
  82. $dPconfig['site_domain'] = "dotproject.net";
  83.  
  84. // enable if you want to be able to see other users's tasks
  85. $dPconfig['show_all_tasks'] = false;
  86.  
  87. // enable if you want to support gantt charts
  88. $dPconfig['enable_gantt_charts'] = true;
  89.  
  90. /** Sets the locale for the jpGraph library.  Leave blank if you experience problems */
  91. $dPconfig['jpLocale'] = '';
  92.  
  93. // enable if you want to log changes using the history module
  94. $dPconfig['log_changes'] = false;
  95.  
  96. // enable if you want to check task's start and end dates
  97. // disable if you want to be able to leave start or end dates empty
  98. $dPconfig['check_tasks_dates'] = true;
  99.  
  100. // warn when a translation is not found (for developers and tranlators)
  101. $dPconfig['locale_warn'] = false;
  102.  
  103. // the string appended to untranslated string or unfound keys
  104. $dPconfig['locale_alert'] = '^';
  105.  
  106. // the number of 'working' hours in a day
  107. $dPconfig['daily_working_hours'] = 8.0;
  108.  
  109. // set debug = true to help analyse errors
  110. $dPconfig['debug'] = false;
  111.  
  112. // set to true if you need to be able to relink tickets to
  113. // an arbitrary parent.  Useful for email-generated tickets,
  114. // but the interface is a bit clunky.
  115. $dPconfig['link_tickets_kludge'] = false;
  116.  
  117. // Calendar settings.
  118. // Day view start end and increment
  119. $dPconfig['cal_day_start']     = 8;      // Start hour, in 24 hour format
  120. $dPconfig['cal_day_end']       = 17;  // End hour in 24 hour format
  121. $dPconfig['cal_day_increment'] = 15;  // Increment, in minutes
  122. $dPconfig["cal_working_days"]  = "1,2,3,4,5"; // days of week that the company works 0=Sunday
  123.  
  124. //File parsers to return indexing information about uploaded files
  125. $ft["default"] = "/usr/bin/strings";
  126. $ft["application/msword"] = "/usr/bin/strings";
  127. $ft["text/html"] = "/usr/bin/strings";
  128. $ft["application/pdf"] = "/usr/bin/pdftotext";
  129. ?>
  130.