mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 11:24:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHTML
		
	
	
	
	
	
| <div class="alert alert-error">
 | |
|     <h4><i><i class="icinga-icon-error"></i> </i> Saving "<?= $this->escape($this->file); ?>" failed</h4>
 | |
|     <br/>
 | |
|     <p>
 | |
|         Your <?= $this->escape($this->file); ?> configuration couldn't be stored (error: "<?= $this->exceptionMessage; ?>").<br/>
 | |
|         This could have one or more of the following reasons:
 | |
|     </p>
 | |
|     <ul>
 | |
|         <li>You don't have file-system permissions to write to the <?= $this->escape($this->file); ?> 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/<?= $this->escape($this->file); ?>) by yourself, you can open it and
 | |
|     insert the config manually:
 | |
| 
 | |
| </p>
 | |
| <p>
 | |
| <pre>
 | |
|         <code>
 | |
| <?= $this->escape($this->iniConfigurationString); ?>
 | |
|         </code>
 | |
|     </pre>
 | |
| </p>
 |