#1 (permalink)  
Alt 07.10.2006, 13:36
Neuer Benutzer
 
Registriert seit: 07.10.2006
Beiträge: 2
Frage admin configure problem

Wenn ich mich als Admin einlogge und dann auf den Adminbutton klicke, wird nur eine leere Seite angezeigt.
Das Problem liegt sicher an der Einstellung in der admin/includes/configure.php - ich habe da jetzt schon mehere Einstellungen und Pfäde ausprobiert aber ich bekomme es einfach nicht hin. Die Hauptseite läuft ohne Probleme, das ist was mich noch mehr stutzig macht.
Bitte helft mir, ich weiß nicht mehr weiter.

admin/includes/configure.php
Code:
  define('HTTP_SERVER', 'http://localhost'); // eg, http://localhost or - https://localhost should not be empty for productive servers
  define('HTTP_CATALOG_SERVER', 'http://www.elpdistribution.com');
  define('HTTPS_CATALOG_SERVER', 'https://www.elpdistribution.com');
  define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
  define('DIR_FS_DOCUMENT_ROOT', '/var/www/vhosts/elpdistribution.com/httpdocs/shop/'); // where the pages are located on the server
  define('DIR_WS_ADMIN', '/shop/admin/'); // absolute path required
  define('DIR_FS_ADMIN', '/var/www/vhosts/elpdistribution.com/httpdocs/shop/admin/'); // absolute pate required
  define('DIR_WS_CATALOG', '/shop/'); // absolute path required
  define('DIR_FS_CATALOG', '/var/www/vhosts/elpdistribution.com/httpdocs/shop/'); // absolute path required
  define('DIR_WS_IMAGES', 'images/');
  define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
  define('DIR_FS_CATALOG_ORIGINAL_IMAGES', DIR_FS_CATALOG_IMAGES .'product_images/original_images/');
  define('DIR_FS_CATALOG_THUMBNAIL_IMAGES', DIR_FS_CATALOG_IMAGES .'product_images/thumbnail_images/');
  define('DIR_FS_CATALOG_INFO_IMAGES', DIR_FS_CATALOG_IMAGES .'product_images/info_images/');
  define('DIR_FS_CATALOG_POPUP_IMAGES', DIR_FS_CATALOG_IMAGES .'product_images/popup_images/');
  define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
  define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
  define('DIR_WS_CATALOG_ORIGINAL_IMAGES', DIR_WS_CATALOG_IMAGES .'product_images/original_images/');
  define('DIR_WS_CATALOG_THUMBNAIL_IMAGES', DIR_WS_CATALOG_IMAGES .'product_images/thumbnail_images/');
  define('DIR_WS_CATALOG_INFO_IMAGES', DIR_WS_CATALOG_IMAGES .'product_images/info_images/');
  define('DIR_WS_CATALOG_POPUP_IMAGES', DIR_WS_CATALOG_IMAGES .'product_images/popup_images/');
  define('DIR_WS_INCLUDES', 'includes/');
  define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
  define('DIR_WS_LANGUAGES', DIR_WS_CATALOG. 'lang/');
  define('DIR_FS_LANGUAGES', DIR_FS_CATALOG. 'lang/');
  define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
  define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
  define('DIR_FS_INC', DIR_FS_CATALOG . 'inc/');
Wie gesagt, die Hauptseite funktioniert mit dieser:
includes/configure.php
Code:
  define('HTTP_SERVER', 'http://www.elpdistribution.com'); // eg, http://localhost - should not be empty for productive servers
  define('HTTPS_SERVER', 'https://www.elpdistribution.com'); // eg, https://localhost - should not be empty for productive servers
  define('ENABLE_SSL', false); // secure webserver for checkout procedure?
  define('DIR_WS_CATALOG', '/shop/'); // absolute path required
  define('DIR_FS_DOCUMENT_ROOT', '/var/www/vhosts/elpdistribution.com/httpdocs/shop/');
  define('DIR_FS_CATALOG', '/var/www/vhosts/elpdistribution.com/httpdocs/shop/');
  define('DIR_WS_IMAGES', 'images/');
  define('DIR_WS_ORIGINAL_IMAGES', DIR_WS_IMAGES .'product_images/original_images/');
  define('DIR_WS_THUMBNAIL_IMAGES', DIR_WS_IMAGES .'product_images/thumbnail_images/');
  define('DIR_WS_INFO_IMAGES', DIR_WS_IMAGES .'product_images/info_images/');
  define('DIR_WS_POPUP_IMAGES', DIR_WS_IMAGES .'product_images/popup_images/');
  define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
  define('DIR_WS_INCLUDES',DIR_FS_DOCUMENT_ROOT. 'includes/');
  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
  define('DIR_WS_LANGUAGES', DIR_FS_CATALOG . 'lang/');

  define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  define('DIR_FS_INC', DIR_FS_CATALOG . 'inc/');

Geändert von floppy (07.10.2006 um 13:48 Uhr)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 07.10.2006, 15:10
Erfahrener Benutzer
 
Registriert seit: 20.01.2005
Beiträge: 123
Standard

da fehlt aber noch die DB -Zuweisung

Zitat:
// define our database connection
define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'Hallo');
define('DB_SERVER_PASSWORD', 'HUHU');
define('DB_DATABASE', 'hallo123');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
?>
Gruß ducky
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 07.10.2006, 15:37
Neuer Benutzer
 
Registriert seit: 07.10.2006
Beiträge: 2
Standard

ich weiß, das hab ich hier absichtlich weggelassen.. dachte das wär klar :X
an den datenbank einstellungen liegt es auch definitiv nicht, denn das hab ich schon getestet.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 08.10.2006, 12:11
RDS RDS ist offline
Erfahrener Benutzer
 
Registriert seit: 01.10.2004
Ort: Mönchengladbach
Beiträge: 374
Standard

define('HTTP_SERVER', 'http://localhost'); // eg, http://localhost or - https://localhost should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.elpdistribution.com');
define('HTTPS_CATALOG_SERVER', 'https://www.elpdistribution.com');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog

Frage: Local auf eigenem Server/Rechner- oder doch beim Provider?

define('HTTP_SERVER', 'http://localhost'); // eg, http://localhost or - https://localhost should not be empty for productive servers

Du gibts "https-server" an aber hast es auf "false"! Haste SSL oder nicht?

Gruß
Jürgen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
admin, configure, problem

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus



Alle Zeitangaben in WEZ +1. Es ist jetzt 10:41 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand