Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

WIljen

Pioneers
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    William

WIljen's Achievements

  1. so if we just blank that field it will cease using the MD5 hash and continue to work? (at least for the time being)
  2. that is not good news as all the methods available for oscom are deprecated according to that post.
  3. I would like to add a line to the wishlist email to BCC the site owner when wishlists are sent out. has anyone figured out a way to do this. I have tried altering the friends list to include that address and altering the php that does the send but neither are functional. Any help appreciated.
  4. Even stranger after adding kymation's update I get some postage to work but depending on weight it will mis-calculate. 3.3 lbs will give me a small flat rate price 3.4 lbs says no options available.
  5. Is there a way to add the large video flat rate box back in both domestic and internationally? We use it a good bit and it seems to be absent in all of the new modules.
  6. I have had your contribution working great on an oscommerce 2.3.3 site for some time now but recently had to restore the site from a backup due to a corrupted drive and now I cannot get it to work. I have checked all the files - all are the current 1.7. uninstalled and re-installed the module etc and cannot get it to show up when I go to checkout. I get the local pickup and per item but it never does the USPS options. Where else should I check, seems odd that copying a working version would suddenly have this issue. Thanks. Wiljen
  7. got a problem I am hoping you can help me with. I went through the latest install notes but when I get to the step of modifiying the Template_top.php. My template_top files does not contain the line it says to look for <?php require(DIR_WS_INCLUDES . 'header.php'); ?>. if I proceed without that step. The left and right columns vanish regardless of settings so it is obviously critical to the process but I cannot figure out what to modify or change. Any help is greatly appreciated. Here is the content of my template_top.php for reference. <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2010 osCommerce Released under the GNU General Public License */ $oscTemplate->buildBlocks(); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" /> <title><?php echo tep_output_string_protected($oscTemplate->getTitle()); ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>" /> <link rel="stylesheet" type="text/css" href="ext/jquery/ui/redmond/jquery-ui-1.8.6.css" /> <script type="text/javascript" src="ext/jquery/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="ext/jquery/ui/jquery-ui-1.8.6.min.js"></script> <?php if (tep_not_null(JQUERY_DATEPICKER_I18N_CODE)) { ?> <script type="text/javascript" src="ext/jquery/ui/i18n/jquery.ui.datepicker-<?php echo JQUERY_DATEPICKER_I18N_CODE; ?>.js"></script> <script type="text/javascript"> $.datepicker.setDefaults($.datepicker.regional['<?php echo JQUERY_DATEPICKER_I18N_CODE; ?>']); </script> <?php } ?> <script type="text/javascript" src="ext/jquery/bxGallery/jquery.bxGallery.1.1.min.js"></script> <link rel="stylesheet" type="text/css" href="ext/jquery/fancybox/jquery.fancybox-1.3.4.css" /> <script type="text/javascript" src="ext/jquery/fancybox/jquery.fancybox-1.3.4.pack.js"></script> <link rel="stylesheet" type="text/css" href="ext/960gs/<?php echo ((stripos(HTML_PARAMS, 'dir="rtl"') !== false) ? 'rtl_' : ''); ?>960_24_col.css" /> <link rel="stylesheet" type="text/css" href="stylesheet_MyStyle.css"> <link rel="stylesheet" type="text/css" href="stylesheet.css" /> <?php echo $oscTemplate->getBlocks('header_tags'); ?> </head> <body id="MyStyle"> <div id="wrapper1"> <?php // BOF: from header.php -- error message and info message if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerError"> <td class="headerError"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['error_message']))); ?></td> </tr> </table> <?php } if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="headerInfo"> <td class="headerInfo"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['info_message']))); ?></td> </tr> </table> <?php } // EOF: from header.php -- error message and info message // Get cart content count for Shopping Cart menu link $cart_count = ''; if($cart->count_contents() > 0) { $cart_count = ' (' . $cart->count_contents() . ')'; } ?> <div id="wrapper2"> <!-- Header --> <div id="header_wrapper"> <div id="header"> <div id="top_menu"> <span><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">Home</a>'; ?></span> <span><?php echo '<a href="' . tep_href_link(FILENAME_SPECIALS) . '">' . MODULE_BOXES_SPECIALS_BOX_TITLE . '</a>'; ?></span> <span><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT) . '">' . HEADER_TITLE_MY_ACCOUNT . '</a>'; ?></span> <span><?php echo '<a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . MODULE_BOXES_SHOPPING_CART_BOX_TITLE . $cart_count . '</a>'; ?></span> <span><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING) . '">' . HEADER_TITLE_CHECKOUT . '</a>'; ?></span> <?php if (tep_session_is_registered('customer_id')) { ?> <span><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></span> <?php } ?> </div> </div> <div id="header_background1"></div> <div id="header_background2"></div> </div> <!-- Content and Sidebars--> <div id="wrapper3"> <div id="content_wrapper"> <div id="content"> <div id="navigation"> You are here: <?php // BOF: from header.php -- breadcrumb echo ' ' . $breadcrumb->trail(' » '); // EOF: from header.php -- breadcrumb ?> <hr class="accessibility"> </div> <div>
×
×
  • Create New...