1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?php
// $Id: unconfigured.php 10956 2005-07-19 20:57:25Z jenst $
?>
<?php
doctype();
?>
<html>
<head>
<title><?php echo _("Gallery Configuration Error") ?></title>
<?php common_header(); ?>
</head>
<body dir="<?php echo $gallery->direction ?>">
<div align="center">
<p class="header"><?php echo _("Gallery has not been configured!") ?></p>
<p class="sitedesc">
<?php
echo _("Gallery must be configured before you can use it.");
?>
</p>
<table class="sitedesc">
<tr>
<td><?php echo _("1."); ?></td>
<td><?php echo _("Create an empty file .htaccess and an empty file config.php"); ?></td>
</tr>
<tr>
<td><?php echo _("2."); ?></td>
<td><?php echo _("Create an albums folder for your pictures and movies."); ?></td>
</tr>
<tr>
<td colspan="2" class="emphasis"><?php echo _("Make sure that both files and the folder are read and writeable for your webserver !"); ?></td>
</tr>
</table>
<p>
<?php
echo sprintf(_("Then start the %sConfiguration Wizard%s."),
'<a href="'. makeGalleryUrl('setup/index.php') .'">', '</a>');
echo '<br>';
include(dirname(__FILE__) . "/configure_help.php");
?>
</p>
</div>
<?php
echo gallery_validation_link('index.php', true);
?>
</body>
</html>
|