This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/include/config.php.sample

40 lines
684 B
Plaintext
Raw Normal View History

<?php
/*************************/
/* config file for appDB */
/*************************/
2004-03-15 16:22:00 +00:00
/*
* global params
*/
$apidb_debug = 0; //turns debugging on/off
/*
* api database info
*/
$apidb_dbuser = "wineowner";
$apidb_dbpass = "lemonade";
2004-03-15 16:22:00 +00:00
$apidb_dbhost = "localhost";
$apidb_db = "apidb";
2004-03-15 16:22:00 +00:00
/*
* user database info
*/
$userdb_dbuser = "wineowner";
$userdb_dbpass = "lemonade";
2004-03-15 16:22:00 +00:00
$userdb_dbhost = "localhost";
$userdb_db = "apidb";
2004-03-15 16:22:00 +00:00
/*
* Bugzilla database info
*/
$bugzilla_dbuser = "root";
$bugzilla_dbpass = "";
$bugzilla_dbhost = "localhost";
$bugzilla_db = "bugs";
/* $bugzilla_db_port = 3306; is this needed? I dont think so.*/
$bugzilla_product_id = 1;
2004-03-15 16:22:00 +00:00
?>