So sieht die Datei aus:
Code:
<?php
define('CONTEXX_INSTALLED', true);
$_DBCONFIG['host'] = 'localhost'; // This is normally set to localhost
$_DBCONFIG['database'] = 'usr_web13_1'; // Database name
$_DBCONFIG['tablePrefix'] = 'cmstc_'; // Database table prefix
$_DBCONFIG['user'] = 'web13'; // Database username
$_DBCONFIG['password'] = 'passwd'; // Database password
$_DBCONFIG['dbType'] = 'mysql'; // Database type (e.g. mysql,postgres ..)
$_DBCONFIG['charset'] = 'utf8'; // Charset (default, latin1, utf8, ..)
$_PATHCONFIG['ascms_root'] = '/var/www/web13/html';
$_PATHCONFIG['ascms_root_offset'] = '/cms'; // example: '/cms';
$_FTPCONFIG['is_activated'] = true; // Ftp support true or false
$_FTPCONFIG['use_passive'] = true; // Use passive ftp mode
$_FTPCONFIG['host'] = 'localhost';// This is normally set to localhost
$_FTPCONFIG['port'] = 21; // Ftp remote port
$_FTPCONFIG['username'] = 'web13'; // Ftp login username
$_FTPCONFIG['password'] = 'passwd'; // Ftp login password
$_FTPCONFIG['path'] = '/html'; // Ftp path to cms
$_CONFIGURATION['custom']['shopnavbar'] = false; // true|false
$_CONFIGURATION['custom']['shopJsCart'] = true; // true|false
$_CONFIG['coreCharacterEncoding'] = 'UTF-8'; // example 'UTF-8'
@header('content-type: text/html; charset='.$_CONFIG['coreCharacterEncoding']);
@ini_set('arg_separator.output', '&');
@ini_set('url_rewriter.tags', 'a=href,area=href,frame=src,iframe=src,input=src,form=,fieldset=');
require_once dirname(__FILE__).'/set_constants.php';
?>