|
|||
|
Hi,
ich habe im moment mit xt:commerce nach einer spiegelung zu kämpfen. Mein Vorgang bei der Spiegelung war eigentlich relativ simpel 1. Alles auf dem FTP per gz gezippet und auf den neuen server übertragen. 2. Datenbankdump erstellt und geischert. 3. Auf dem neuen server per ssh die ftp-daten entpackt. 4. Datenbank importiert(fehlerfrei) Nun bin ich an dem punkt wo ich die configure.php udn die configure.org.php dateien anpassen will. (in den ordner admin/includes und includes) hier habe ich den absoluten pfad angepasst. dazu habe ich extra auf nochmal bei einem andere xt:shop auf dem gleichen server geprüft ob ich den absoluten pfad richtig genommen habe) Datenbankname, -user und -passwort blieben gleich. Jetz das Problem. Beim aufrufen der passiert folgendes. Ich sehe nicht den Shop. das einzige ist das Favicon in der Adresszeile. Desweitern fragt mich Firefox ob ich eine Datei herunteladen will. Hab ich mal gemacht. die datei hat folgendes format [kriptischer_string].part Bsp: YqMpGHtG.part wenn ich diese Datei im Notepad öffne, sehe ich folgendes Code:
<?php
/* -----------------------------------------------------------------------------------------
$Id: index.php 1321 2005-10-26 20:55:07Z mz $
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(default.php,v 1.84 2003/05/07); www.oscommerce.com
(c) 2003 nextcommerce (default.php,v 1.13 2003/08/17); www.nextcommerce.org
Released under the GNU General Public License
-----------------------------------------------------------------------------------------
Third Party contributions:
Enable_Disable_Categories 1.3 Autor: Mikel Williams | mikel@ladykatcostumes.com
Customers Status v3.x (c) 2002-2003 Copyright Elari elari@free.fr | www.unlockgsm.com/dload-osc/ | CVS : http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/elari/?sortby=date#dirlist
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
include ('includes/application_top.php');
// create smarty elements
$smarty = new Smarty;
// include boxes
require (DIR_FS_CATALOG.'templates/'.CURRENT_TEMPLATE.'/source/boxes.php');
// the following cPath references come from application_top.php
$category_depth = 'top';
if (isset ($cPath) && xtc_not_null($cPath)) {
$categories_products_query = "select count(*) as total from ".TABLE_PRODUCTS_TO_CATEGORIES." where categories_id = '".$current_category_id."'";
$categories_products_query = xtDBquery($categories_products_query);
$cateqories_products = xtc_db_fetch_array($categories_products_query, true);
if ($cateqories_products['total'] > 0) {
$category_depth = 'products'; // display products
} else {
$category_parent_query = "select count(*) as total from ".TABLE_CATEGORIES." where parent_id = '".$current_category_id."'";
$category_parent_query = xtDBquery($category_parent_query);
$category_parent = xtc_db_fetch_array($category_parent_query, true);
if ($category_parent['total'] > 0) {
$category_depth = 'nested'; // navigate through the categories
} else {
$category_depth = 'products'; // category has no products, but display the 'no products' message
}
}
}
require (DIR_WS_INCLUDES.'header.php');
include (DIR_WS_MODULES.'default.php');
$smarty->assign('language', $_SESSION['language']);
$smarty->caching = 0;
if (!defined(RM))
$smarty->load_filter('output', 'note');
$smarty->display(CURRENT_TEMPLATE.'/index.html');
include ('includes/application_bottom.php');
?>
Irgendeine Idee was ich falsch gemacht habe? Gruß, p4ntha |
![]() |
| Lesezeichen |
| Stichworte |
| problem, spiegelung |
| Themen-Optionen | |
| Ansicht | |
|
|
Ähnliche Themen
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Problem mit Shop Anzeige | jklps | Installation und Konfiguration | 0 | 24.04.2009 07:37 |
| Warenkorb Problem mit Login | MarcusV1973 | Fragen zur Software | 0 | 23.04.2009 14:18 |
| Problem mit Kategorienverwaltung, brauche Hilfe | flash5622 | Admininterface | 0 | 22.04.2009 11:15 |