mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-11 10:39:15 +02:00
- Icons have now the {{XY_ICON}} format - custom classes are removed - A few typos are fixed - Capitalization refs #4550 refs #4621 refs #4584
28 lines
898 B
PHTML
28 lines
898 B
PHTML
<br/>
|
|
<div class="alert alert-error">
|
|
<h4><i>{{WARNING_ICON}}</i>Saving Dashboard Failed</h4>
|
|
<br/>
|
|
<p>
|
|
Your dashboard couldn't be stored (error: "<?= $this->exceptionMessage; ?>"). This could have one or more
|
|
of the following reasons:
|
|
</p>
|
|
<ul>
|
|
<li>You don't have permissions to write to the dashboard file</li>
|
|
<li>Something went wrong while writing the file</li>
|
|
<li>There's an application error preventing you from persisting the configuration</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<p>
|
|
Details can be seen in your application log (if you don't have access to this file, call your administrator in this case).
|
|
<br/>
|
|
In case you can access the configuration file (config/dashboard/dashboard.ini) by yourself, you can open it and
|
|
insert the config manually:
|
|
</p>
|
|
<p>
|
|
<pre>
|
|
<code>
|
|
<?= $this->escape($this->iniConfigurationString); ?>
|
|
</code>
|
|
</pre>
|
|
</p>
|