amethyst Posted February 29, 2004 Posted February 29, 2004 HELP please.... i cannot understand what is happening.... please take a look at this site.... http://examplestore2.uksensations.co.uk as you will see there is a background image...... then click onto "create an account" it goes to the secure part of site (which is the same server but sssl'd) and the image does not appear... can anyone help with this?? :huh:
tep Posted February 29, 2004 Posted February 29, 2004 Is the bg image within the osc directory? or is located elsewhere on the server?
amethyst Posted February 29, 2004 Author Posted February 29, 2004 hi thanks for responding... the image is within the /catalog/images/ directory any ideas? :huh:
fmerrill Posted March 1, 2004 Posted March 1, 2004 how did you define the bg image to get displayed? did you put it in the stylesheet?
amethyst Posted March 1, 2004 Author Posted March 1, 2004 :huh: yes its in the stylesheet.. BODY { background-image: url(/images/ice.gif); color: #000000; margin: 0px; } A { color: #000000; text-decoration: none; } A:hover { color: #AABBDD; text-decoration: underline; } FORM { display: inline; } TR.header { background-image: url(/images/ice.gif); } my admin config file // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'http://examplestore2.uksensations.co.uk/'); define('HTTP_CATALOG_SERVER', 'http://examplestore2.uksensations.co.uk/'); define('HTTPS_CATALOG_SERVER', ''https://server1.simplewebserver.co.uk/~uksensat/examplestore2/'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // 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', 'admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', ''); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); 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/'); my includes config // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://examplestore2.uksensations.co.uk/'); define('HTTPS_SERVER', 'https://server1.simplewebserver.co.uk/~uksensat/examplestore2/'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('DIR_WS_CATALOG', ''); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); // If "URL fopen wrappers" are enabled in PHP (which they are in the default configuration), this can be a URL instead of a local pathname 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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/'); define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // 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_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); any ideas? quite frankly i'm flummoxed.... stu :blink:
amethyst Posted March 1, 2004 Author Posted March 1, 2004 HOORAY!!!!!! ok guys have worked it out... it was missing quote marks in admin css thanks for your heklp stu :blink:
Recommended Posts
Archived
This topic is now archived and is closed to further replies.