Changeset 744
- Timestamp:
- Sep 6, 2015, 10:39:58 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.htaccess
r512 r744 5 5 6 6 RewriteEngine On 7 RewriteBase /8 9 # Pretty urls on localhost with alias10 RewriteCond %{HTTP_HOST} localhost11 7 RewriteCond %{REQUEST_FILENAME} !-f 12 8 RewriteCond %{REQUEST_FILENAME} !-d 13 RewriteRule ^(.*)$ centrala/index.php?$1 14 15 # Pretty urls 16 RewriteCond %{HTTP_HOST} centrala.zdechov.net 17 RewriteCond %{REQUEST_FILENAME} !-f 18 RewriteCond %{REQUEST_FILENAME} !-d 19 RewriteRule ^(.*)$ index.php?$1 20 9 RewriteRule ^(.*)$ %{CONTEXT_PREFIX}/index.php?$1 21 10 22 11 #ErrorDocument 403 "index.php?page=403" -
trunk/Application/System.php
r738 r744 149 149 if(isset($_SERVER['REMOTE_ADDR'])) session_start(); 150 150 151 $ConfigFileName = dirname( __FILE__).'/../config.php';151 $ConfigFileName = dirname(dirname(__FILE__)).'/config.php'; 152 152 if(file_exists($ConfigFileName)) 153 153 $this->ConfigManager->LoadFromFile($ConfigFileName); -
trunk/Common/Page.php
r738 r744 89 89 //$Output .= '<div class="MainTitle">'.$Title.'</div>'; 90 90 $Output .= '<div class="MainTitle"><span class="MenuItem"><strong>Navigace :: </strong> '.$Navigation.'</span><div class="MenuItem2">'; 91 $Bar = ''; 91 92 foreach($this->System->Bars['Top'] as $BarItem) 92 $Output .= call_user_func($BarItem); 93 $Bar .= call_user_func($BarItem); 94 if(trim($Bar) != '') $Output .= $Bar; 95 else $Output .= ' '; 93 96 $Output .= '</div></div>'; 94 97 } -
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.