Ausgangspunkt: contenido version. 4.8.1
Problem: wollte meine Testdomain auf die richtige domain umstellen. das frontend funktioniert- backend auch alles- nur bekomme ich wenn ich einen artikel im backend ansehe keine css mitgeliefert und will ich dann auf den blauen bleistift klicken erscheint:
Code: Alles auswählen
Warning: include_once(config.php) [function.include-once]: failed to open stream: No such file or directory in /home/wusr30023/www/contenido/external/backendedit/front_content.php on line 68
Warning: include_once() [function.include]: Failed opening 'config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/wusr30023/www/contenido/external/backendedit/front_content.php on line 68
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/wusr30023/www/contenido/external/backendedit/front_content.php on line 69
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 481
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 484
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 485
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 486
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 487
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 488
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/conlib/session.inc on line 489
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/contenido/external/backendedit/front_content.php on line 223
Warning: Cannot modify header information - headers already sent by (output started at /home/wusr30023/www/contenido/external/backendedit/front_content.php:68) in /home/wusr30023/www/contenido/includes/include.con_editcontent.php on line 56Code: Alles auswählen
<?php
/******************************************
* File      :   config.php
* Project   :   Contenido
* Descr     :   Defines all general
*               variables of Contenido.
*
* � four for business AG
******************************************/
global $cfg;
/* 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']               = '/home/wusr30023/www/contenido/';
/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml']      = 'http://30023.web.zcom.it/contenido/';
/* The root server path where all frontends reside */
$cfg['path']['frontend']                = '/home/wusr30023/www';
/* The root server path to the conlib directory */
$cfg['path']['phplib']                  = '/home/wusr30023/www/conlib/';
/* The root server path to the pear directory */
$cfg['path']['pear']                    = '/home/wusr30023/www/pear/';
/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg']                 = '/home/wusr30023/www/contenido/external/wysiwyg/tinymce2/';
/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html']            = 'http://30023.web.zcom.it/contenido/external/wysiwyg/tinymce2/';
/* The server path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg']                 = '/home/wusr30023/www/contenido/external/wysiwyg/';
/* The web path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg_html']            = 'http://30023.web.zcom.it/contenido/external/wysiwyg/';
/* Section 2: Database settings
 * ----------------------------
 *
 * Database settings for MySQL. Note that we don't support
 * other databases in this release.
 */
/* The prefix for all contenido system tables, usually "con" */
$cfg['sql']['sqlprefix'] = 'con';
/* The host where your database runs on */
$contenido_host = 'xxx';
/* The database name which you use */
$contenido_database = 'xxx';
/* The username to access the database */
$contenido_user = 'xxx';
/* The password to access the database */
$contenido_password = 'xxxx';
$cfg["database_extension"] = 'mysql';
$cfg["nolock"] = 'false';
$cfg["is_start_compatible"] = false;
/* Security fix */
if ( isset($_REQUEST['cfg']) ) { exit; }
if ( isset($_REQUEST['cfgClient']) ) { exit; }
?>
lg
//EDIT funktioniert wieder - habe nur warten müssen. jetz würde ich aber gerne auf die richtige domain umsteigen. was muss man beachten??