if (!$result) {
if (empty($val)) {
- $entry[] = 'The file <code>' . $key . '</code> appears to be missing. You probably just forgot to copy <code>' . $key . '.dist</code> over. While you do that, take a look at the settings and make sure they are appropriate for your site.';
+ $text = 'The file <code>' . $key . '</code> appears to be missing.';
+ if ($key == 'config/conf.php') {
+ $text .= ' You need to login to Horde as an administrator and create the initial configuration file.';
+ } else {
+ $text .= ' You probably just forgot to copy <code>' . $key . '.dist</code> over. While you do that, take a look at the settings and make sure they are appropriate for your site.';
+ }
+
+ $entry[] = $text;
} else {
$entry[] = $val;
}