Changeset 744 for trunk/Common/Setup/Setup.php
- Timestamp:
- Sep 6, 2015, 10:39:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Setup/Setup.php
r738 r744 22 22 $this->ShortTitle = 'Instalátor'; 23 23 //$this->ParentClass = 'PagePortal'; 24 $this->ConfigDir = dirname( __FILE__).'/../..';24 $this->ConfigDir = dirname(dirname(dirname(__FILE__))).'/Config'; 25 25 } 26 26 … … 105 105 $Output .= $this->System->Setup->Upgrade(); 106 106 } catch (Exception $E) { 107 $Output .= $this->SystemMessage('Chyba aktualizace', 'Došlo k chybě v SQL dotazu při aktualizaci: <br/>'.$E->getMessage()); 107 $Output .= $this->SystemMessage('Chyba aktualizace', 108 'Došlo k chybě v SQL dotazu při aktualizaci: <br/>'.$E->getMessage()); 108 109 } 109 110 $Output .= $this->ControlPanel(); … … 256 257 { 257 258 $Output = ''; 258 if(!file_exists($this->ConfigDir.'/ config.php') and !is_writable($this->ConfigDir))259 $Output .= 'Varování: Konfigurační soubor nebude možné zapsat, protože složka není povolená pro zápis!';260 if(file_exists($this->ConfigDir.'/ config.php') and !is_writable($this->ConfigDir.'/config.php'))261 $Output .= 'Varování: Konfigurační soubor nebude možné zapsat, protože soubor config.phpnení povolen pro zápis!';259 if(!file_exists($this->ConfigDir.'/Config.php') and !is_writable($this->ConfigDir)) 260 $Output .= 'Varování: Konfigurační soubor nebude možné zapsat, protože složka "'.$this->ConfigDir.'" není povolená pro zápis!'; 261 if(file_exists($this->ConfigDir.'/Config.php') and !is_writable($this->ConfigDir.'/Config.php')) 262 $Output .= 'Varování: Konfigurační soubor nebude možné zapsat, protože soubor "'.$this->ConfigDir.'/Config.php" není povolen pro zápis!'; 262 263 $Output .= '<h3>Nastavení systému</h3>'. 263 264 '<form action="?action=configure_save" method="post">'. … … 320 321 } 321 322 $ConfigText = $this->CreateConfig($Config); 322 file_put_contents($this->ConfigDir.'/ config.php', $ConfigText);323 file_put_contents($this->ConfigDir.'/Config.php', $ConfigText); 323 324 $Output .= 'Konfigurace nastavena<br/>'; 324 325 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.