|
Last change
on this file was 76, checked in by chronos, 9 years ago |
- Added: Basic Ubuntu packaging files.
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | $Config = array(
|
|---|
| 4 | 'SystemPassword' => sha1(random(100000)),
|
|---|
| 5 | 'Database' => array(
|
|---|
| 6 | 'Host' => 'localhost',
|
|---|
| 7 | 'User' => 'estetistic',
|
|---|
| 8 | 'Password' => 'password',
|
|---|
| 9 | 'Database' => 'estetistic',
|
|---|
| 10 | 'Prefix' => '',
|
|---|
| 11 | 'Charset' => 'utf8',
|
|---|
| 12 | ),
|
|---|
| 13 | 'AddNewValueUrl' => 'http://localhost/estetistic/add.php',
|
|---|
| 14 | 'Debug' => 0,
|
|---|
| 15 | 'Web' => array(
|
|---|
| 16 | 'Title' => 'Estetistic',
|
|---|
| 17 | 'Charset' => 'utf-8',
|
|---|
| 18 | 'AdminEmail' => 'user@local.domain',
|
|---|
| 19 | 'ShowSQLError' => false,
|
|---|
| 20 | 'ShowSQLQuery' => false,
|
|---|
| 21 | 'ShowError' => false,
|
|---|
| 22 | 'ErrorLogFile' => 'php_script_error.log',
|
|---|
| 23 | 'ItemsPerPage' => 30,
|
|---|
| 24 | 'VisiblePagingItems' => 10,
|
|---|
| 25 | ),
|
|---|
| 26 | 'DivisionCount' => 500,
|
|---|
| 27 | 'LevelReducing' => 5,
|
|---|
| 28 | 'MaxLevel' => 4,
|
|---|
| 29 | 'ReferenceTime' => 0,
|
|---|
| 30 | 'ImageWidth' => 750,
|
|---|
| 31 | 'ImageHeight' => 200,
|
|---|
| 32 | 'ValueToImageHeigthCoefficient' => 0.9,
|
|---|
| 33 | 'FontFileName' => './arial.ttf',
|
|---|
| 34 | 'FontSize' => 10,
|
|---|
| 35 | 'DefaultVariables' => array(
|
|---|
| 36 | 'TimeStart' => time() - 3600*24,
|
|---|
| 37 | 'TimeEnd' => time(),
|
|---|
| 38 | 'Measure' => 1,
|
|---|
| 39 | 'Period' => 'day',
|
|---|
| 40 | 'TimeSpecify' => 0,
|
|---|
| 41 | 'Differential' => 0,
|
|---|
| 42 | ),
|
|---|
| 43 | );
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.