Hallo brauch dringend hilfe, danke
ich habe Xt in 2 Ordner Shop-1A und Shop-1B installiert m?chte aber das Shop-1B nur die Bilder in Shop-1A liest und schreibt.
Bei start vom Shop-B1 liest er nur seine Bilder in verzeichnis Shop-1B und speichert auch nur Bilder in sein verzeichnis ab er soll es in Shop-1A machen
was muss ich in configure.org.php und configure.php umschreiben
Shop-1A
define('DIR_WS_CATALOG', '/'); // absolute path required
define('DIR_FS_VirtualDocumentRoot', '/home/A1/www/data/A1/');
define('DIR_FS_CATALOG', '/home/A1/www/data/A1/');
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/');
Shop-1B
define('DIR_WS_CATALOG', '/'); // absolute path required
define('DIR_FS_VirtualDocumentRoot', '/home/B1/www/data/B1/');
define('DIR_FS_CATALOG', '/home/B1/www/data/B1/');
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/');
|