#1 (permalink)  
Alt 05.05.2005, 11:05
 
Registriert seit: 03.05.2005
Beiträge: 20
Standard

Hallo,

ich habe soeben den neuen Shop installiert.
Alles funktioniert super, jedoch fehlen im Adminbereich die Bilder der Buttons um z.B. einen neuen Artikel anzulegen. Die URL des Bildes stimmt nicht, diese verweist nicht auf meinen Server.

Was kann ich hier machen damit die Bilder f?r die Buttons angezeigt werden.

DANKE f?r die Hilfe.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 05.05.2005, 11:33
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

falscher pfad in den configures. hast du beim installieren die voreingetragenen pfade ge?ndert ?
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 05.05.2005, 11:42
 
Registriert seit: 03.05.2005
Beiträge: 20
Standard

Nein, ich habe zwar versucht diese zu ?ndern, dann konnte ich aber danach meine Admin Daten nicht eingeben, also habe ich die Einstellungen so gelassen.

Wenn ich nun im Admintools versuche einen Artikel einzubinden, wird das hochgeladenen Bild nicht angezeigt, da der falsche Pfad angeben ist. Wenn ich den Pfad durch meine URL erg?nze kann ich das Bild ohne weiteres sehen.
Die angebenen Pfade im Confic menue waren immer ohne meine URL ist das so richtig?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 05.05.2005, 11:47
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

grunds?tzlich tauchen fehler dieser art meistens dann auf, wenn der installateur beim installieren dachte er sei schlauer als der installer :fear:
poste mal deine includes/configure.php und admin/includes/configure.php OHNE passw?rter etc.
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 05.05.2005, 12:25
 
Registriert seit: 03.05.2005
Beiträge: 20
Standard

Die beiden Dateien die ich auf dem Rechner habe sind leer, soll ich dir die vom Webserver Posten oder welche?? Sorry f?r die dumme Frage bin aber kein pro.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 05.05.2005, 12:30
 
Registriert seit: 03.05.2005
Beiträge: 20
Standard

/XTCommerce/xtcommerce/includes/configure.php

<?php
/* --------------------------------------------------------------

XT-Commerce - community made shopping
http://www.xt-commerce.com

Copyright &copy; 2003 XT-Commerce
--------------------------------------------------------------
based on:
&copy; 2000-2001 The Exchange Project (earlier name of osCommerce)
&copy; 2002-2003 osCommerce (configure.php,v 1.13 2003/02/10); www.oscommerce.com

Released under the GNU General Public License
--------------------------------------------------------------*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.kappler.de'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.kappler.de'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', false); // secure webserver for checkout procedure?
define('DIR_WS_CATALOG', '//XTCommerce/xtcommerce/'); // absolute path required
define('DIR_FS_DOCUMENT_ROOT', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/');
define('DIR_FS_CATALOG', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/');
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/');

// define our database connection
define('DB_SERVER', 'db70.kundenserver.de'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'dbo125450653');
define('DB_SERVER_PASSWORD', '............');
define('DB_DATABASE', 'db125450653');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
?>

/XTCommerce/xtcommerce/admin/includes/configure.php

<?php
/* --------------------------------------------------------------

XT-Commerce - community made shopping
http://www.xt-commerce.com

Copyright &copy; 2003 XT-Commerce
--------------------------------------------------------------
based on:
&copy; 2000-2001 The Exchange Project (earlier name of osCommerce)



&copy; 2002-2003 osCommerce (configure.php,v 1.14 2003/02/21); www.oscommerce.com

Released under the GNU General Public License
--------------------------------------------------------------*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.kappler.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://www.kappler.de');
define('HTTPS_CATALOG_SERVER', 'https://www.kappler.de');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '//XTCommerce/xtcommerce/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '//XTCommerce/xtcommerce/'); // absolute path required
define('DIR_FS_CATALOG', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/'); // 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/');

// define our database connection
define('DB_SERVER', 'db70.kundenserver.de'); // eg, localhost - should not be empty for productive servers
define('DB_SERVER_USERNAME', 'dbo125450653');
define('DB_SERVER_PASSWORD', '............');
define('DB_DATABASE', 'db125450653');
define('USE_PCONNECT', 'false'); // use persisstent connections?
define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 05.05.2005, 12:54
Benutzerbild von polkhigh33
xt:C Supportmitarbeiter
 
Registriert seit: 26.10.2003
Ort: Hamburg
Beiträge: 6.862
Standard

die doppelten slashes in den pfaden wech. bsp:
Code:
define('DIR_FS_DOCUMENT_ROOT', '/homepages/35/d15953010/htdocs//XTCommerce/xtcommerce/');
wird zu
Code:
define('DIR_FS_DOCUMENT_ROOT', '/homepages/35/d15953010/htdocs/XTCommerce/xtcommerce/');
__________________
dieser beitrag ist ohne gewähr und stellt nur meine meinung und keinesfalls eine rechtsberatung dar. im zweifelsfalle ist er ironisch gemeint.
.:netzdesign33.de:. | .:blog33.de:.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #8 (permalink)  
Alt 05.05.2005, 13:05
 
Registriert seit: 03.05.2005
Beiträge: 20
Standard

Super vielen Dank, das wars.

DANKE
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
adminbereich, buttons

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 06:17 Uhr.

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

xt:Commerce is a SafeCharge brand