Ignore:
Timestamp:
Sep 6, 2015, 10:39:58 PM (9 years ago)
Author:
chronos
Message:
  • Fixed: Config file name.
  • Fixed: Proper displaying of empty top bar.
  • Modified: Made .htaccess file working by default without need a change.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Setup/Setup.php

    r738 r744  
    2222    $this->ShortTitle = 'Instalátor';
    2323    //$this->ParentClass = 'PagePortal';
    24     $this->ConfigDir = dirname(__FILE__).'/../..';
     24    $this->ConfigDir = dirname(dirname(dirname(__FILE__))).'/Config';
    2525  }
    2626
     
    105105            $Output .= $this->System->Setup->Upgrade();
    106106          } 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());
    108109          }
    109110          $Output .= $this->ControlPanel();
     
    256257  {
    257258    $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.php není 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!';
    262263    $Output .= '<h3>Nastavení systému</h3>'.
    263264        '<form action="?action=configure_save" method="post">'.
     
    320321    }
    321322    $ConfigText = $this->CreateConfig($Config);
    322     file_put_contents($this->ConfigDir.'/config.php', $ConfigText);
     323    file_put_contents($this->ConfigDir.'/Config.php', $ConfigText);
    323324    $Output .= 'Konfigurace nastavena<br/>';
    324325    return($Output);
Note: See TracChangeset for help on using the changeset viewer.