Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

newbieonekenobie

Archived
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    Joe

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

newbieonekenobie's Achievements

  1. I am needing assitance with how to change to xmember code to exlude non-taxable items. I sell both products and services, combined on the same order, and want only discount to be calculated for the products. Any help would be appreciated! Joe
  2. One more thing, is there an newer version of the contrib? I have downloaded the CCGV v5.21 and expected to be working hard to integrate with the July 08 version of RMA. I am assuming the RMA has the CCGV (older version) integrated...at least that is what I get from the posts. Is this is right? Joe
  3. Thanks Ian...I did do as you suggested but ran into other issues. Starting over to determine if made the changes correctly. Will let you know. Joe
  4. No modifcations have been made to the account_history_info.php or any other files on the site (fresh install). The RC2a code matches the code I have from the RC2 install but does not match the code referenced in the RMA contribution. What version of OSC was the mod written for? Joe
  5. I was about to install the 2.6 version of this contribution and noticed a discrepancy in the "find" this code an "replace" with this code for updating the account_history_info.php file in a just installed version of 2.2RC2 (no other contributions installed). Code to find in the account_history_info.php file - per the contribution $customer_info_query = tep_db_query("select customers_id from " . TABLE_ORDERS . " where orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "'"); $customer_info = tep_db_fetch_array($customer_info_query); if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Code I find in the account_history_info.php file $customer_info_query = tep_db_query("select o.customers_id from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_STATUS . " s where o.orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and s.public_flag = '1'"); $customer_info = tep_db_fetch_array($customer_info_query); if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Says to replace with this code... $customer_info_query = tep_db_query("select customers_id, orders_status from " . TABLE_ORDERS . " where orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "'"); $customer_info = tep_db_fetch_array($customer_info_query); $orders_status = $customer_info['orders_status']; if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Am concerned, any suggestions? Joe
  6. I was about to install the 2.6 version of this contribution and noticed a discrepancy in the "find" this code an "replace" with this code for updating the account_history_info.php file in a just installed version of 2.2RC2 (no other contributions installed). Code to find in the account_history_info.php file - per the contribution $customer_info_query = tep_db_query("select customers_id from " . TABLE_ORDERS . " where orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "'"); $customer_info = tep_db_fetch_array($customer_info_query); if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Code I find in the account_history_info.php file $customer_info_query = tep_db_query("select o.customers_id from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_STATUS . " s where o.orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and s.public_flag = '1'"); $customer_info = tep_db_fetch_array($customer_info_query); if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Says to replace with this code... $customer_info_query = tep_db_query("select customers_id, orders_status from " . TABLE_ORDERS . " where orders_id = '". (int)$HTTP_GET_VARS['order_id'] . "'"); $customer_info = tep_db_fetch_array($customer_info_query); $orders_status = $customer_info['orders_status']; if ($customer_info['customers_id'] != $customer_id) { tep_redirect(tep_href_link(FILENAME_ACCOUNT_HISTORY, '', 'SSL')); } Any suggestions? Joe
  7. The Super Contact Us enhancement is great! One issue I am having though is I receive the following two SMTP errors upon submitting the form. Warning: mail() [function.mail]: SMTP server response: 451 See http://pobox.com/~djb/docs/smtplf.html. in D:\Hosting\3645952\html\store\catalog\includes\classes\email.php on line 522 Warning: mail() [function.mail]: SMTP server response: 503 RCPT first (#5.5.1) in D:\Hosting\3645952\html\store\catalog\includes\classes\email.php on line 522 It is probably a simple fix...I am just new php. Any help would be appreciated! Thanks, Joe
×
×
  • Create New...