File: unconfigured.php

package info (click to toggle)
gallery 1.5.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 26,712 kB
  • ctags: 6,567
  • sloc: php: 33,824; sh: 446; xml: 96; makefile: 88; perl: 61
file content (49 lines) | stat: -rw-r--r-- 1,213 bytes parent folder | download
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>