Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

TripleCross

Archived
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    Carrie Northcutt

TripleCross's Achievements

  1. Maybe you can help me. I installed v4.1 I have made changes to all of the areas. When I visit the shopping cart it has tax added to all of the prices. The Retail setting is set to "Show prices without tax" Furthermore, when I log in with a dummy account set up as a different customer group, the pricing doesn't change in the shopping cart. I am a newbie so any help is greatly appreciated. Carrie
  2. Congratulations! I have not had any luck. Just got through wiping the controller out. Everytime I try to download I get an error. When you press the download button, where does yours go?
  3. Go to your orders.php in the admin folder There are three areas that start with $orders_query_raw=.... at the end of each of those lines you will see "and ot.class = 'ot_total' order by $order"; If you will take out the order by That should fix the error problem. I have everything working except for selecting the download button once the order is completed. It gives me an error that the page cannot be displayed and there is no download. Hope yours won't do this.
  4. taz1, I have been working on a problem with this for a few days. My first problem is similar to what you posted so I hope this helps. :D Check on your orders.php in the admin folder for this around line 397 (that is where mine starts): $orders_query_raw = "select o.orders_id, o.customers_name, o.customers_id, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text as order_total from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id), " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$cID . "' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and ot.class = 'ot_total' order by $order"; } elseif (isset($HTTP_GET_VARS['status'])) { $status = tep_db_prepare_input($HTTP_GET_VARS['status']); $orders_query_raw = "select o.orders_id, o.customers_name, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text as order_total from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id), " . TABLE_ORDERS_STATUS . " s where o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and s.orders_status_id = '" . (int)$status . "' and ot.class = 'ot_total' order by $order"; } else { $orders_query_raw = "select o.orders_id, o.customers_name, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text as order_total from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id), " . TABLE_ORDERS_STATUS . " s where o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and ot.class = 'ot_total' order by $order"; } I think I modified the ending of each of the $orders_query_raw statements. Also, in products attributes I added a Product Option- Version with Option Value Download:v2000 Mine is working fine until I go to the order history and try to download, I get an error page that says page cannot be displayed. currently working on this issue. I hope this information helps you.! :D
×
×
  • Create New...