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