/adei/ui

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/ui
33 by Suren A. Chilingaryan
Documentation and configuration updates
1
<?php
2
3
if (is_array($READER_DB['toska'])) {
4
    $READER_DB['toska'] = array_merge($READER_DB['toska'], array(
5
	"timeout" => 100000,	// us
6
	"ping" => true		// host and port should be specified
7
    ));
8
9
    $OPTIONS["toska__womisaDB_repl"] = array_merge($OPTIONS["toska__womisaDB_repl"], array(
10
/*	    "trace_timings" => true,
11
	    "trace_timings" => array(
12
		"limit_interval" => 600,
13
//		"limit_processing_time" => 0.5,
14
		"limit_percentage" => 50,
15
		"overall_only" => false,
16
		"raise_exception" => 90		
17
	    ),*/
18
    ));
19
20
}
59.1.9 by Suren A. Chilingaryan
Another MySQL escaping fix
21
22
if (is_array($READER_DB['asec'])) {
23
    $READER_DB['asec']['host'] = "csa.aragats.am";
24
}
25
33 by Suren A. Chilingaryan
Documentation and configuration updates
26
?>