Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ian

Archived
  • Posts

    1,089
  • Joined

  • Last visited

Profile Information

  • Real Name
    Ian C Wilson
  • Location
    Newcastle, England
  • Interests
    Parrots, Yorkshiremen, Spam, Spam, Spam
  • Website

Ian's Achievements

  1. Devon, The problem is caused by the redeem process. Originally the redeem process forced you to login. This ensured the redeemed Voucher was associated with a customer account. A lot of people did not like this, so I changed it so that if you were not logged in the voucher could still be redeemed, by storing the details in a session variable. Once you do log in/create an account the value is then associated with your customer id. What is happening in your case, is that you had the voucher amount in a session (in your logged off state) You then came back and created a different account, because the session can not distinguish, the GV Value was given to the new account. Od course this problem will only occur when you are redeemin/creating accounts on the same computer.
  2. Thats one of the problems with post 19/5 snapshots. Create_account_process no longer exists and one of the reasons why my contribution will not work on these sanpshots. Now you know why I'm up to version 5 and there are still the odd bugs, coz I have to keep rewriting the code for new snapshots, rather than just concentrating on stabilization. :cry:
  3. I very much doubt it, the Gift Voucher system relies on using a customer account to track the purchase/redeem of vouchers. 5.1 will partly resolve this by forcing the sending of the GV email during checkout rather than relying on the 'send' link. However, this still leaves the problem of what happens when some one does not use the full value of the GV during purchase. It might be possible to solve this by letting them re-enter the code again at a later time to access the balance. the 2 above would then mean the GV system would be able to work without linking the GV to a customer account.
  4. Joe I've double checked my code and cannot see a reason for this. Is the rest of the email formatted correctly? Can you email me a copy of your gv_mail.php file?
  5. Yes, There is still a problem with authnet ADC. It's easily fixed though In checkout_process.php // load the selected shipping module require(DIR_WS_CLASSES . 'shipping.php'); $shipping_modules = new shipping($shipping); require(DIR_WS_CLASSES . 'order.php'); $order = new order; ******************************* Authorize.net contribution code goes here ********************************* // load the before_process function from the payment modules $payment_modules->before_process(); require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; What needs to be done is to move the require/instantiation of the order_total modules to before the authnet code. So, // load the selected shipping module require(DIR_WS_CLASSES . 'shipping.php'); $shipping_modules = new shipping($shipping); require(DIR_WS_CLASSES . 'order.php'); $order = new order; require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; ******************************* Authorize.net contribution code goes here ********************************* // load the before_process function from the payment modules $payment_modules->before_process(); HTH
  6. 5.04 is in fact ready, it's out with a couple of people for testing. However this is still written against a pre-19th May snapshot and that is how it will be initially released. The reason for this is that it is a bugfix update from 5.03 and I would upset a lot of people if the bugfix update did not work on the snapshot they first used. :D I'll release a 5.04A which is compatible with newer snapshots straight after(only admin code affected) Both should appear over the weekend.
  7. Devon Is this with a standard payment method, or are you using something else, like paypal or authorize.net etc.
  8. Joe, With such a great surname how can I not help (or is that really your surname and not just a ploy to attract my attention :lol: ) Is the problem you are having with Gift Vouchers sent by admin or gift vouchers sent by a customer to a friend.
  9. Yes, The cvs updates after 18/5 included a complete re-write of the split_page_results class. Because of this any contribution using this class will be broken :cry: I haven't had a chance to go thru everything to work out the changes yet.
  10. Unfortunatel no, The discount module simply uses the cart total. The code would need to be changed somewhat to not discount special prices.
  11. teebee, Very weird, I do have a possible explanation. First does the sent to friend email have an sid in the redeem link ? If so this could possibly explain what is happening
  12. what did the admin->Gift Vouchers sent have to say about this.
  13. The Loaded file version will always differ from core osc files as they use a separate cvs. The only way to tell if the files are actually different is to use a file compare utility such as beyond compare. However I can say that you should will OK with manafucturers.php as their is no custom code in their.
  14. The 5.04 code is now ready, however rather than release now, I was hoping there would be a couple of people who could test the install before a proper contribution release. Let me know if you want to give it a try.
×
×
  • Create New...