config.db.php.dist 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /* $Id: config.db.php.dist 1098 2006-10-12 23:08:56Z b4rt $ */
  3. /*******************************************************************************
  4. LICENSE
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License (GPL)
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  14. *******************************************************************************/
  15. /******************************************************************************/
  16. // YOUR DATABASE CONNECTION INFORMATION
  17. /******************************************************************************/
  18. $cfg["db_type"] = "mysql"; // Database-Type : mysql/sqlite/postgres
  19. $cfg["db_host"] = "localhost"; // Database host computer name or IP
  20. $cfg["db_name"] = "torrentflux"; // Name of the Database
  21. $cfg["db_user"] = "root"; // Username for Database
  22. $cfg["db_pass"] = ""; // Password for Database
  23. $cfg["db_pcon"] = false; // Persistent Connection enabled : true/false
  24. /******************************************************************************/
  25. ?>