<?php
/******************************************
* File : config.php
* Project : Contenido
* Descr : Defines all general
* variables of Contenido.
*
* © four for business AG
******************************************/
/* Current Contenido Version. You shouldn't change this
value unless you know what you are doing

. The reason
why it is placed in the top of this file is to easier
get out the contenido version. */
$cfg['version'] = "4.4.5";
/* "Workaround" for register_globals=off settings. */
require_once '/srv/www/htdocs/web15/html/page/contenido/includes/globals_off.inc.php';
/* Section 1: Path settings
* ------------------------
*
* Path settings which will vary along different
* Contenido settings.
*
* A little note about web and server path settings:
* - A Web Path can be imagined as web addresses. Example:
*
http://192.168.1.1/test/
* - A Server Path is the path on the server's hard disk. Example:
* /var/www/html/contenido for Unix systems OR
* c:/htdocs/contenido for Windows systems
*
* Note: If you want to modify the locations of subdirectories for
* some reason (e.g. the includes directory), see Section 8.
*/
/* The root server path to the contenido backend */
$cfg['path']['contenido'] = '/srv/www/htdocs/web15/html/page/contenido/';
/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml'] = '
http://www.www.XXX.de/page/contenido/';
/* The root server path where all frontends reside */
$cfg['path']['frontend'] = '/srv/www/htdocs/web15/html/page';
/* The root server path to the conlib directory */
$cfg['path']['phplib'] = '/srv/www/htdocs/web15/html/page/conlib/';
/* The root server path to the pear directory */
$cfg['path']['pear'] = '/srv/www/htdocs/web15/html/page/pear/';
/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg'] = '/srv/www/htdocs/web15/html/page/contenido/external/wysiwyg/spaw/';
/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html'] = '
http://www.XXX.de/page/contenido/external/wysiwyg/spaw/';
/* Section 3: Misc settings
* ----------------------------------
*
* Misc user defined settings.
*/
/* Thumbnail width, in pixels */
$con_cfg['thumb']['width'] = 50;
/* Thumbnail height, in pixels */
$con_cfg['thumb']['height'] = 50;
/* Section 4: Error handling settings
* ----------------------------------
*
* Actually no variables, but important settings
* for error handling and logging.
*/
/* Don't display errors */
ini_set("display_errors",true);
/* Log errors to a file */
ini_set("log_errors",true);
/* The file in which we write the error log */
ini_set("error_log",$cfg["path"]["contenido"]."logs/errorlog.txt");
/* Report all errors except warnings */
error_reporting (E_ALL ^ E_NOTICE);
/* Various base API functions */
require_once ('/srv/www/htdocs/web15/html/page/contenido/includes/api/functions.api.general.php');
usw......
?>