Seite 1 von 1
Fatal Error
Verfasst: Mo 5. Jul 2004, 12:53
von pladde
Ich hab seit gestern versucht, die Seite zum laufen zu bringen. Installation und Einstellungen im Adminbereich funktioniert einwandfrei.
Wenn ich jedoch die Seite im cms Ordner aufrufen will, kommt immer die selbe Meldung:
Fatal error: Could not display error page. Error to display was: 'No contenido session variable set. Probable error cause: Start article in this category is not set on-line.
Ich hab zwar überall nachgelesen, bin aber wohl zu doof dafür. Vielleicht kann mir jemand einen Rat geben.
Danke
Verfasst: Mo 5. Jul 2004, 13:02
von kummer
du musst einen artikel erstellen und diesen online schalten. wenn du noch gar keinen artikel hast, kann contenido auch nichts darstellen.
Verfasst: Mo 5. Jul 2004, 14:59
von pladde
problem hat sich gelöst. trotzdem danke
war das cookie problem...
Hy
Verfasst: Mi 14. Jul 2004, 09:15
von robger
welches cookie problem?
hab auch Fatal Error aber versucht andere meldung!
Code: Alles auswählen
Fatal error: Could not display error page. Error to display was: 'No start article in this category'
http://pixelprojet.de/roberto/cms
Wie hast du das problem gelöst?
Verfasst: Mi 14. Jul 2004, 11:07
von pladde
Entweder du hast deine Startartikel nicht online gesetzt oder keinen Inhalt in diesen Artikeln.
Oder es ist der Fall, der auch bei mir zugetroffen hat, dass du auf deinem Server eine phpnuke-Seite laufen hast oder phpmyadmin. Dann erscheint dir eine Loginbox mit Username "nobody" und danach beim Weiterklicken Fehlermeldungen. Hier hilft nur Cookies im Browsercache löschen und / oder folgende Zeilen in der front_content.php einsetzen:
Code: Alles auswählen
if (isset($HTTP_COOKIE_VARS['lang'])) { // phpmyadmin cookie
setcookie("lang","", time() - 3600);
unset($HTTP_COOKIE_VARS['lang']);
}
Falls die Seiten parallel auf deinem Server laufen, musst du wohl oder übel auf "Aktualisieren" klicken, um das contenido cms anzeigen zu können. Da ich kein versierter Programmierer bin und mich erst seit 2 Wochen mit dem Contenido Content Management System befasse, kann ich nix neues zu dem Thema beisteuern. Ich kann nur sagen, dass das Ding nur so bei mir läuft.
Falls ich nen Schmarrn erzählt haben sollte, kann ja ein alter Hase was hierzu beitragen. Mir geht diese Loginbox auf den Keks. Es kann ja nicht angehen, dass auf einem Webserver, der mehrere Seiten hostet, contenido solche Probleme hat. phpnuke, postnuke, phpadmin können doch auch ohne Probleme nebeneinander laufen.
Danke schö geht trotzdem net
Verfasst: Mi 14. Jul 2004, 17:50
von robger
Code: Alles auswählen
if (isset($HTTP_COOKIE_VARS['lang'])) { // phpmyadmin cookie
setcookie("lang","", time() - 3600);
unset($HTTP_COOKIE_VARS['lang']);
}
hab ich frontend eingesetzt phpmyadmin hab ich drauf
phpnuke hat ich mal drauf kann sein das davon noch was in datenbanken rumgeistert
Hier zwei screens:
die config (auszug)
Code: Alles auswählen
<?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.4";
/* "Workaround" for register_globals=off settings. */
require_once '/home/www/web43/html/roberto/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'] = '/home/www/web43/html/roberto/contenido/';
/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml'] = 'http://www.pixelprojet.de/roberto/contenido/';
/* The root server path where all frontends reside */
$cfg['path']['frontend'] = '/home/www/web43/html/roberto';
/* The root server path to the conlib directory */
$cfg['path']['phplib'] = '/home/www/web43/html/roberto/conlib/';
/* The root server path to the pear directory */
$cfg['path']['pear'] = '/home/www/web43/html/roberto/pear/';
/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg'] = '/home/www/web43/html/roberto/contenido/external/wysiwyg/spaw/';
/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html'] = 'http://www.pixelprojet.de/roberto/contenido/external/wysiwyg/spaw/';
/* 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 = 'localhost';
/* The database name which you use */
$contenido_database = 'usr_web43_2';
/* The username to access the database */
$contenido_user = 'web43';
/* The password to access the database */
$contenido_password = '########';
/* 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",false);
/* 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 ('/home/www/web43/html/roberto/contenido/includes/api/functions.api.general.php');