Xaraya - Konfigurační soubor
Návody pro C4
Tento návod není již nadále aktualizován. Odkazy v textu nemusí být funkční. Návod bude po čase úplně odstraněn.
K dispozici je stránka o aplikaci Xaraya, na které naleznete popis, návody, screenshoty, graf popularity, statistiky a diskuze.
Hlavní konfigurační soubor
var/config.system.php
Úprava připojení k databázi
V souboru config.system.php najděte tuto část kódu:
// Database Configuration // Database Username: the username that will be used to connect to the database. $systemConfiguration['DB.UserName'] = 'uzivatel-stare-databaze'; // Database Password: the password that will be used to connect to the database. $systemConfiguration['DB.Password'] = 'heslo-stare-databaze'; // Database Host: the host name where the database server is located. // A different port can also be specified, e.g. 'localhost:12345' $systemConfiguration['DB.Host'] = 'localhost'; // Database Name: the name of the database to connect to. $systemConfiguration['DB.Name'] = 'nazev-stare-databaze'; // Database Type: the type of the database server. $systemConfiguration['DB.Type'] = 'mysql'; // Database TablePrefix: a string that will be prefixed to every database tables that are part of the core. // Those tables are shared across multi-sites. $systemConfiguration['DB.TablePrefix'] = '';
a upravte následující hodnoty:
- uzivatel-stare-databaze - zadejte název nové databáze
- heslo-stare-databaze - zadejte heslo k vaší nové databázi
- nazev-stare-databaze - znovu vyplňte název databáze
Ukázka vyplněných parametrů pro databázi db-demo s heslem 12345:
// Database Configuration // Database Username: the username that will be used to connect to the database. $systemConfiguration['DB.UserName'] = 'db-demo'; // Database Password: the password that will be used to connect to the database. $systemConfiguration['DB.Password'] = '12345'; // Database Host: the host name where the database server is located. // A different port can also be specified, e.g. 'localhost:33123' $systemConfiguration['DB.Host'] = 'localhost'; // Database Name: the name of the database to connect to. $systemConfiguration['DB.Name'] = 'db-demo'; // Database Type: the type of the database server. $systemConfiguration['DB.Type'] = 'mysql'; // Database TablePrefix: a string that will be prefixed to every database tables that are part of the core. // Those tables are shared across multi-sites. $systemConfiguration['DB.TablePrefix'] = '';
Aktualizace
Z bezpečnostních důvodů doporučujeme pravidelně provádět aktualizaci aplikace.
Diskuzní fórum pro aplikaci Xaraya
Nové diskuzní téma můžete založit v sekci Redakční systémy.
Změny a kontroly
K dispozici je kompletní přehled všech změn a kontrol v tomto návodu.
Xaraya - Konfigurační soubor
Aplikace: | Xaraya |
Ověřeno pro: | Xaraya 1.2.3 Base |
Publikace: | 15.3.2012 |
Kontrola: | 28.6.2013 |
Přehled změn a kontrol |
Diskuzní fórum
- Webové aplikace
- Tvorba web stránek
- PHP, MySQL