~ubuntu-branches/ubuntu/hardy/gallery2/hardy-security

« back to all changes in this revision

Viewing changes to install/templates/CreateConfigFileInstructions.html

  • Committer: Bazaar Package Importer
  • Author(s): Michael C. Schultheiss
  • Date: 2006-04-16 16:42:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060416164235-8uy0u4bfjdxpge2o
Tags: 2.1.1-1
* New upstream release (Closes: #362936)
  + Bugfixes for Postgres7 (Closes: #359000, #362152)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
    <h1><?php print _('Create a config file') ?></h1>
2
2
 
3
 
    <p class="error">
4
 
      <?php if (!empty($templateData['error'])) print $templateData['error'] ?>
5
 
    </p>
 
3
    <?php if (!empty($templateData['error'])): ?>
 
4
    <div class="error">
 
5
      <h2>
 
6
      <?php print $templateData['error'] ?>
 
7
      </h2>
 
8
    </div>
 
9
    <?php endif; ?>
6
10
 
7
11
    <p>
8
12
      <?php printf(_("Now we need to write out all the information you provided into a file called <b>config.php</b> in your <b>%s</b> directory.  This is a very important file that gives Gallery all the information that it needs to operate.  After we create it, you can read through this file and make changes to it if you want."), $templateData['galleryDir']) ?>
12
16
      <?php printf(_("Before we can proceed, you should create a file in your <b>%s</b> directory called <i>config.php</i>.  You must make sure that the webserver will be able to write to it.  If you're on unix, try doing <i>chmod 666 config.php</i>.  On Windows, you shouldn't have to do anything special.  When you've created this file and set the permissions properly, you can proceed.  If there's a problem, we'll tell you what to fix."), $templateData['galleryDir']) ?>
13
17
    </p>
14
18
 
15
 
  <div class="go">
16
 
    <span class="goToNext">
17
 
      <a href="<?php printf('%s?step=%s', INDEX_PHP, $currentStep->getStepNumber()) ?>">
18
 
        <?php print _('Create config file') ?>
19
 
      </a>
20
 
    </span>
21
 
  </div>
 
19
    <div class="go">
 
20
      <div class="btn btn-continue"><span><span><span><span>
 
21
      <a href="<?php generateUrl(sprintf('%s?step=%s', INDEX_PHP, $currentStep->getStepNumber())) ?>"><?php print _('Create config file') ?></a>
 
22
      </span></span></span></span></div>
 
23
    </div>