Revision 8a86b3b7
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
bin/mozilla/admin.pl | ||
---|---|---|
650 | 650 |
my $form = $main::form; |
651 | 651 |
my $locale = $main::locale; |
652 | 652 |
|
653 |
$form->{dbport} = '5432';
|
|
654 |
$form->{dbuser} = 'lxoffice'; |
|
653 |
$form->{dbport} = $::auth->{DB_config}->{port} || 5432;
|
|
654 |
$form->{dbuser} = $::auth->{DB_config}->{user} || 'lxoffice';
|
|
655 | 655 |
$form->{dbdefault} = 'template1'; |
656 |
$form->{dbhost} = 'localhost'; |
|
656 |
$form->{dbhost} = $::auth->{DB_config}->{host} || 'localhost';
|
|
657 | 657 |
|
658 | 658 |
$form->{title} = "Lx-Office ERP / " . $locale->text('Database Administration'); |
659 | 659 |
|
Auch abrufbar als: Unified diff
Datenbankadministration: Verbindungsinformationen mit Daten aus config/authentication.pl vorbelegen
Betrifft Hostnamen, Port und Datenbankbenutzer. Datenbankvorlage
bleibt auf 'template1'.