Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tetchi

Archived
  • Posts

    3
  • Joined

  • Last visited

Profile Information

tetchi's Achievements

  1. Hopefully just a quickie. Brilliant contribution, but I'm having problems with accessing the admin section through a shared SSL connection. In short my http server is http://www.mydomainname.co.uk My https server is https://mywebhost.com/~myusername/ When I log in via regular http everything works fine. Using SSL to connect, however, I simply get sent back to the login page repeatedly. Any thoughts or suggestions welcome, apart from this one niggle I am this happy :D with the contribution. Thanks in advance
  2. It's all OK now, i just gritted my teeth and tried it. Now for my next question... I'm working on a music download site at the minute and, when a customer selects nochex and goes to the checkout everything seems peachy. If they then change their mind and press 'back' they return to the website and can download the music in 'my account', despite not having paid. It seems the download links are being activated before going to the nochex website, is there a way of activating them only on successful payment. The idea behind installing Paypal IPN and Nochex APC was to try and make that couldn't happen. Any help appreciated, I'm a relative newcomer to php and suchlike Cheers again Urmy
  3. Hi all Just wondered if anyone has the Paypal IPN contribution and Nochex running on the same site. Both Paypal IPN and Nochex need account_history.php updating. Here's the line in question: Original: $history_query_raw = "select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' order by orders_id DESC"; Paypal IPN: $history_query_raw = "select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and o.orders_status != '99999' order by orders_id DESC"; Nochex: $history_query_raw = "select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' and o.orders_status != '50000' order by orders_id DESC"; Do I need to include these as two separate lines or will they have to be merged to work side by side? Cheers Urmy
×
×
  • Create New...