#1 (permalink)  
Alt 14.05.2006, 12:47
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Frage

Hallo,

Ich habe ein Problem und zwar werden in meinem Shop die Administrator buttons nicht angezeigt.

Ich weis aus den anderen Beitr?gen, dass es etwas mit den configure.php datein zu tun hat. leider finde ich den Fehler nicht selber also poste ich mal den Inhalt hier rein hoffentlich k?nnt ihr mir helfe.

/includes/configure.php:

Code:
<?php
/* --------------------------------------------------------------

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

  Copyright (c) 2003 XT-Commerce
 --------------------------------------------------------------
 based on:
 (c) 2000-2001 The Exchange Project (earlier name of osCommerce)
 (c) 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://tintenhradware.ti.funpic.de'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://tintenhradware.ti.funpic.de'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', false); // secure webserver for checkout procedure?
 define('DIR_WS_CATALOG', 'tintenhradware.ti.funpic.de/'); // absolute path required
 define('DIR_FS_DOCUMENT_ROOT', '/usr/export/www/vhosts/funnetwork/hosting/tintenhradware/');
 define('DIR_FS_CATALOG', '/usr/export/www/vhosts/funnetwork/hosting/tintenhradware/');
 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', 'localhost'); // eg, localhost - should not be empty for productive servers
 define('DB_SERVER_USERNAME', 'tintenhradware');
 define('DB_SERVER_PASSWORD', 'mueller123');
 define('DB_DATABASE', 'tintenhradware');
 define('USE_PCONNECT', 'false'); // use persistent connections?
 define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'
?>
und Admin/includes/configure.php:

Code:
<?php
/* --------------------------------------------------------------

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

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

 (c) 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://tintenhradware.ti.funpic.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'http://tintenhradware.ti.funpic.de');
 define('HTTPS_CATALOG_SERVER', 'https://tintenhradware.ti.funpic.de');
 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', 'tintenhradware.ti.funpic.de'); // where the pages are located on the server
 define('DIR_WS_ADMIN', 'tintenhradware.ti.funpic.de/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/usr/export/www/vhosts/funnetwork/hosting/tintenhradware/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', 'tintenhradware.ti.funpic.de/'); // absolute path required
 define('DIR_FS_CATALOG', '/usr/export/www/vhosts/funnetwork/hosting/tintenhradware/'); // 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', 'localhost'); // eg, localhost - should not be empty for productive servers
 define('DB_SERVER_USERNAME', 'xxxxxxxxxxxxx');   {Die xxxxxxxx sind in der Originaldatei nat?rlich nicht da}
 define('DB_SERVER_PASSWORD', 'xxxxxxxx');
 define('DB_DATABASE', 'xxxxxxxxxx');
 define('USE_PCONNECT', 'false'); // use persisstent connections?
 define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql'

?>
Die xxxxxxx habe ich selbst hinzugef?gt normalerweise stehen hier die richtigen Werte.

Ich benutze ?brigen V.2 falls das eine Rolle spielen sollte.

bitte sagt mir was ich gegebenen Falls ver?ndern muss


Danke
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 14.05.2006, 13:58
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Standard

AAAALSOOOOO ich weis das ich da oben jetzt mein passwort reingeschrieben hab, das is aber nich besonders schlimm da ich's gearde ge?ndert habe und eine sicherungskopie gemacht habe. Ihr k?nnt also ruhig antworten wenn ihr die L?sung habt. Ich wei?, ich bin bescheuert!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 14.05.2006, 15:53
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Standard

hat den wirklich keiner eine Idee es w?re wirklich wichtig, dass ich das hinbekomme.

MFG
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 15.05.2006, 20:24
RDS RDS ist offline
Erfahrener Benutzer
 
Registriert seit: 01.10.2004
Ort: Mönchengladbach
Beiträge: 374
Standard

Zitat:
Originally posted by rkrueger75@May 14 2006, 04:53 PM
hat den wirklich keiner eine Idee es w?re wirklich wichtig, dass ich das hinbekomme.

MFG
Hi,
Frage? Ist dies deine Internetadresse: tintenhradware.ti.funpic.de'?
Oder soll die etwa so hei?en: tintenhardware.ti.funpic.de'?

Allenfalls die rechte ?berpr?fen!

J?rgen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 16.05.2006, 12:34
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Standard

Hallo, die Internetafresse ist richtig so wie sie da steht aber was meinst du mit Rechte ?berpr?fen?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 16.05.2006, 17:43
RDS RDS ist offline
Erfahrener Benutzer
 
Registriert seit: 01.10.2004
Ort: Mönchengladbach
Beiträge: 374
Standard

Zitat:
Originally posted by rkrueger75@May 16 2006, 01:34 PM
Hallo, die Internetafresse ist richtig so wie sie da steht aber was meinst du mit Rechte ?berpr?fen?

Die rechte der Verzeichnisse z.b. images = 777

J?rgen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 16.05.2006, 17:59
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Standard

Hallo, also die Rechte sind alle auf 777 es geht aber leider trotzdem nicht.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #8 (permalink)  
Alt 16.05.2006, 18:02
RDS RDS ist offline
Erfahrener Benutzer
 
Registriert seit: 01.10.2004
Ort: Mönchengladbach
Beiträge: 374
Standard

Zitat:
Originally posted by rkrueger75@May 16 2006, 06:59 PM
Hallo, also die Rechte sind alle auf 777 es geht aber leider trotzdem nicht.
Dateien von PC und FTP vergleichen.Vielleicht fehlen ein paar oder haben 0KB

J?rgen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #9 (permalink)  
Alt 16.05.2006, 19:17
xt:C Sponsor
 
Registriert seit: 18.04.2006
Beiträge: 34
Standard

Nein, leider kann es das auch nicht sein die Buttons sind alle vorhanden und die Ordner haben den richtigen Namen.

Aber danke f?r deine Bem?hungen vieleicht hast du ja noch ne Idee auf Lager irgendwas muss es ja sein.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
admin, 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 10:13 Uhr.

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

xt:Commerce is a SafeCharge brand