kierslee Posted December 11, 2004 Posted December 11, 2004 I've got my cart up and running at two-scents.com/store but all of the button gifs seem to be broken. Any ideas on what I need to check to fix that? Thanks, Kierslee
Guest Posted December 11, 2004 Posted December 11, 2004 The product images seem to be showing up just fine, just not the built-in ones like buttons and so forth. Can you post your catalog/includes/configure.php (minus username/password type info) here? Have you modified catalog/includes/application_top.php at all? -jared -jared
Guest Posted December 11, 2004 Posted December 11, 2004 I tried to view http://two-scents.com/store/includes/langu...tton_search.gif, which is where that button should be, and got a 403 forbidden. I'd have expected a 404 not found, or to see the image. You might want to check the permissions on those files/directories. -jared
kierslee Posted December 15, 2004 Author Posted December 15, 2004 Here's the store/includes/configure.php file. <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce 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://two-scents.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secure7.dr2.net/~kierslee'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'two-scents.com'); define('HTTPS_COOKIE_DOMAIN', 'secure7.dr2.net/~kierslee'); define('HTTP_COOKIE_PATH', '/store'); define('HTTPS_COOKIE_PATH', '/store'); define('DIR_WS_HTTP_CATALOG', '/store/'); define('DIR_WS_HTTPS_CATALOG', '/store/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); 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_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/kierslee/public_html/store/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // CLR 020605 defines needed for Product Option Type feature. define('PRODUCTS_OPTIONS_TYPE_SELECT', 0); define('PRODUCTS_OPTIONS_TYPE_TEXT', 1); define('PRODUCTS_OPTIONS_TYPE_RADIO', 2); define('PRODUCTS_OPTIONS_TYPE_CHECKBOX', 3); define('TEXT_PREFIX', 'txt_'); define('PRODUCTS_OPTIONS_VALUE_TEXT_ID', 0); //Must match id for user defined "TEXT" value in db table TABLE_PRODUCTS_OPTIONS_VALUES // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be NULL for productive servers define('DB_SERVER_USERNAME', ''); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', ''); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Thanks for helping out.
kierslee Posted December 15, 2004 Author Posted December 15, 2004 I checked the permissions and they all seem to be readable by the globally or "world" as it says in my cpanel. I tried to view http://two-scents.com/store/includes/langu...tton_search.gif, which is where that button should be, and got a 403 forbidden. I'd have expected a 404 not found, or to see the image. You might want to check the permissions on those files/directories. -jared <{POST_SNAPBACK}>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.