summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/showConfiguration.phtml
blob: 682b349c99d19d4c8c9e2a2e67a960935180d96f (plain)
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
<div>
  <h4><?= $this->translate('Saving Configuration Failed'); ?></h4>
  <p>
    <?= sprintf(
      $this->translate('The file %s couldn\'t be stored. (Error: "%s")'),
      $this->escape($filePath),
      $this->escape($errorMessage)
    ); ?>
    <br>
    <?= $this->translate('This could have one or more of the following reasons:'); ?>
  </p>
  <ul>
    <li><?= $this->translate('You don\'t have file-system permissions to write to the file'); ?></li>
    <li><?= $this->translate('Something went wrong while writing the file'); ?></li>
    <li><?= $this->translate('There\'s an application error preventing you from persisting the configuration'); ?></li>
  </ul>
</div>
<p>
  <?= $this->translate('Details can be found in the application log. (If you don\'t have access to this log, call your administrator in this case)'); ?>
  <br>
  <?= $this->translate('In case you can access the file by yourself, you can open it and insert the config manually:'); ?>
</p>
<p>
  <pre>
    <code><?= $this->escape($configString); ?></code>
  </pre>
</p>