Revision 52cd76db
Von Moritz Bunkus vor mehr als 16 Jahren hinzugefügt
SL/User.pm | ||
---|---|---|
145 | 145 |
} |
146 | 146 |
|
147 | 147 |
# update the tables |
148 |
open(FH, ">$main::userspath/nologin") or die("$!"); |
|
148 |
if (!open(FH, ">$main::userspath/nologin")) { |
|
149 |
$form->show_generic_error($main::locale->text('A temporary file could not be created. ' . |
|
150 |
'Please verify that the directory "#1" is writeable by the webserver.', |
|
151 |
$main::userspath), |
|
152 |
'back_button' => 1); |
|
153 |
} |
|
149 | 154 |
|
150 | 155 |
# required for Oracle |
151 | 156 |
$form->{dbdefault} = $sid; |
Auch abrufbar als: Unified diff
Ausgabe einer ordentlichen Fehlermeldung beim Datenbankupgrade, wenn das Verzeichnis users nicht beschreibbar ist.