debut de conf de virtualhost (simple mais a tester voir si pas de soucis ailleurs)
This commit is contained in:
parent
84517ce518
commit
c5473502c6
@ -93,6 +93,23 @@ class DbConf {
|
|||||||
$this->user = "";
|
$this->user = "";
|
||||||
$this->pass = "";
|
$this->pass = "";
|
||||||
$this->name = "dolibarr";
|
$this->name = "dolibarr";
|
||||||
|
/*
|
||||||
|
* If you want to activate virtualhosting you need tou use these lines and add
|
||||||
|
* this to your pache virtualhost file
|
||||||
|
SetEnv LLX_DBTYPE mysql
|
||||||
|
SetEnv LLX_DBHOST localhost
|
||||||
|
SetEnv LLX_DBUSER user
|
||||||
|
SetEnv LLX_DBPASS pass
|
||||||
|
SetEnv LLX_DBNAME dolibarr
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
$this->type = getenv("LLX_DBTYPE");
|
||||||
|
$this->host = getenv("LLX_DBHOST");
|
||||||
|
$this->user = getenv("LLX_DBUSER");
|
||||||
|
$this->pass = getenv("LLX_DBPASS");
|
||||||
|
$this->name = getenv("LLX_DBNAME");
|
||||||
|
*/
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user