Guest Posted March 7, 2007 Posted March 7, 2007 All of my images in the categories.php [admin panel] are not being displayed as the link to the image is wrong. How do I go about changing it? Website: www.cardswithlove.co.uk Server on: https Image Link is: https://guadeloupe.globat.com/shop/includes...images/icon.gif Image link should be: https://guadeloupe.globat.com/~cardswithlov...images/icon.gif admin/includes/configure.php reads: <?php /* $Id: configure.php,v 1.14 2003/02/21 16:55:24 dgw_ Exp $ shopommerce, Open Source E-Commerce Solutions http://www.shopommerce.com Copyright (c) 2002 shopommerce Released under the GNU General Public License */ // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'https://guadeloupe.globat.com/~cardswithlove.co.uk'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'https://guadeloupe.globat.com/~cardswithlove.co.uk'); define('HTTPS_CATALOG_SERVER', 'https://guadeloupe.globat.com/~cardswithlove.co.uk'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/local/psa/home/vhosts/cardswithlove.co.uk/httpsdocs/shop/'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/shop/admin/'); define('DIR_FS_ADMIN', '/usr/local/psa/home/vhosts/cardswithlove.co.uk/httpsdocs/shop/admin/'); define('DIR_WS_CATALOG', '/shop/'); define('DIR_FS_CATALOG', '/usr/local/psa/home/vhosts/cardswithlove.co.uk/httpsdocs/shop/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . '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_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); // define our database connection define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', '*******'); define('DB_SERVER_PASSWORD', '*******'); define('DB_DATABASE', 'shopdata'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', ''); ?>
ErollorD Posted March 7, 2007 Posted March 7, 2007 you can also access your imagw with link: http://www.cardswithlove.co.uk/shop/includ...images/icon.gif so try to replace: define('HTTP_CATALOG_SERVER', 'https://guadeloupe.globat.com/~cardswithlove.co.uk'); define('HTTPS_CATALOG_SERVER', 'https://guadeloupe.globat.com/~cardswithlove.co.uk'); with define('HTTP_CATALOG_SERVER', 'https://www.cardswithlove.co.uk'); define('HTTPS_CATALOG_SERVER', 'https://www.cardswithlove.co.uk');
Guest Posted March 7, 2007 Posted March 7, 2007 WOW! Thank you very much dude. That seems to have fixed it. :)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.