repo.or.cz
/
ryzomcore.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git]
/
web
/
public_php
/
webtt
/
app
/
config
/
database.php
blob
702ece2820b8a2a19b192338649e239f72733b05
1
<
?php
2
class
DATABASE_CONFIG
{
3
4
var
$default
=
array
(
5
'driver'
=>
'mysqli'
,
6
'persistent'
=>
false
,
7
'host'
=>
'localhost'
,
8
'login'
=>
'webtt'
,
9
'password'
=>
'webtt77'
,
10
'database'
=>
'webtt2'
,
11
'encoding'
=>
'utf8mb4'
12
);
13
var
$raw_files
=
array
(
14
'datasource'
=>
'RawFilesSource'
,
15
'path'
=>
'/path/to/translation'
,
16
'extension'
=>
'(uxt|txt)'
,
17
'readonly'
=>
true
,
18
'recursive'
=>
true
,
19
);
20
}
21
?
>