Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Strider

Pioneers
  • Posts

    408
  • Joined

  • Last visited

Everything posted by Strider

  1. did you change the request version or fix the areas where the vendor id was wrong (unless it is vendor 1) and is it working today? Strider
  2. Adam, I just wanted to say you sure do have a nice looking website and thanks for all your help on the forums. Best of luck, Strider
  3. that is really strange ... note the quotes around the last part of what you displayed and the link within the http:// -- ............. part you said that authorize said you were getting alpha chars in your ip error 32 at some point I think ... I think you were getting checkout_payment in your data stream to them... that is just way bizarre.... you need to diff the original aim file with the one you are running .. because you have something that is just not right ... I don't know very much but I would think that is just way odd from my small perspective
  4. why not try it in the column box instead of the shopping cart page. I would think it would probably be easier to do and since all the other information about the coupon or the gv is there it would make more sense.
  5. I haven't played with Customer Discount mod, but gift vouchers are not discounted with discount coupons.
  6. KieranMullen: I tried this out on 3 different versions of mysql and it worked fine after I made restrict_to_p roducts be restrict_to_products ... that might have just been a problem with the transformation of the text in the forum though.... select coupon_id, coupon_code, coupon_amount, coupon_type, coupon_start_date,coupon_expire_date,uses_per_user,uses_per_coupon,restrict_to_p roducts, restrict_to_categories, date_created,date_modified from coupons where coupon_active='Y' and coupon_type != 'G' limit -20, 20 spherica: great glad to hear it works for you... well you might go for a long run and let the endorphins kick in ... sargenle: try changing if ($order->content_type == 'virtual') { to if (($order->content_type == 'virtual') || ($order->content_type == 'virtual_weight') ) {
  7. ATTENTION: There is a security flaw within a single file of the ccgv install. All versions I believe have this problem. I have uploaded securityflaw.zip which is the contrib 10 Dec 2004 - security flaw within the contribution section. Though this sounds devestating, it is not on a file that will give lots of headaches but does need to be fixed. to anyone concerned: please do not use maureen's fix stated above in this thread. Believe me it will mess quite a bit up for you. helohelo: yes it is possible to setup a discount coupon to be used unlimited times and can be setup to be used unlimited times by the same person or just once. hendrickson: sounds like you are running 5.10 I think the 0.00 was fixed in 5.10b .. No you can't stack discount coupons. The reason it is shown in the admin is just to let you know someone has it. jonathn: it sounds like you have a tare weight setup in your shipping configuration. I think mibble explained this in a recent post KieranMullen: What version of mysql are you using now and is it a beta version? Are you having any problems with lists of 20 or more products? spherica: If you will look at the rest of the readme it will tell you exactly which files to modify. The modifications in the files are all setup where it as //ICW ADDED FOR CREDIT CLASS SYSTEM added to the side of a single line insert or has a begin and end statement. To install it by hand takes a good four hours for most people. Have some strong coffee and a bottle of champagne at the ready. mibble: csdiff works very good also and is free. Yes, I am working on the documentation of the new contrib and hopefully it will be out within the next week or two. Now don't tell anyone I said that because there is only 24 hours in a day and I am running on 28
  8. abirchall: the orders_total table should contain the total, subtotal, shipping, tax, gv, discounts or any of the values used in the order total area of the order. If I remember correctly the ccgv doesn't write directly to the order totals table but just places it in the array for the class to write. ashley26: that was a good suggestion from sargenie. Other parts would be the sort order. You can find the correct values for this else where in this thread. hobbyhen: gv attributes is a known bug, but thanks for bringing it to my attention. It is actually fixed in test code and other production code. I am just trying to find the time to do the doc and put the package together. jaleel: You didn't edit some of the scripts or they were not uploaded. Branden: Yes to the paypal and it depends on which authorize.net you are talking about. There is doc in the paypal thread that describes how to handle the paypal. There is also a bug with checkout_process that is reported in osc's bug reports and mentioned elsewhere in this thread that talks about the ordering that needs to be done. that along with testing credit_covers, if you are using Bao Nguyen or Austin Renfroe's authorize.net contrib before calling direct. helohelo: yes there is a new package coming. There is just not a lot of time to put it together. I am hoping with the december slow down(if there is such a thing this year) that I will be able to put this out within the next couple of weeks. There is a whole slew of bugs that have been fixed along with other interesting changes that I think people will enjoy. In answer to your second question ... yes. just use 0 or the number of times you want the coupon used with 1 use per customer.
  9. RikP: it is for not charging shipping on a gift certificate
  10. jacobr: no the code I showed you goes into your includes/header.php glassraven: it sounds like you don't have your add_ccgv_application_top.php included where it is suppose to be on the catalog side and the other problem sounds like you have a parse error
  11. dsutton01: It looks like something in order total. The odd thing is the disparity between the two headers though. Especially since the header is done before even the left column is taken care of ... I don't seem to have a problem with the faq's though... the gv_faq is just a left column middle column with an include and a right column. You might check the version of the ccgv code you are running and make sure it is 5.10b. updmike: I have it working on one site now and will try to make the mods for the next release sometime within the next couple of weeks. jacobr: does the sts take out the headers error msg routine on about line 67 you should have <?php 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(urldecode($HTTP_GET_VARS['error_message'])); ?></td> </tr> </table> <?php } that should take care of the error msg's based on the ot_gv's code.
  12. Jacob: I have never played with the sts, there are no problems with bts. Since the error msg's go through the error message class the question would be are you getting any other error msg's?
  13. Anna: I think you are right anna, that it isn't used. thanks for the info scrap32: vouchers are products read the install on how to create them ppollock: actually am working on that(or trying to..) just going slower than I would like due to time restraints but there are some notes within the ipn thread that tell you how to do that I think.
  14. potikyan: This should be the last 25 lines or so of checkout_process.php Please note the redirect on the next to last code line..... if for some reason you have unregistered the customer_id then you would be redirected back to the main page tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); // send emails to other people if (SEND_EXTRA_ORDER_EMAILS_TO != '') { tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } // load the after_process function from the payment modules $payment_modules->after_process(); $cart->reset(true); // unregister session variables used during checkout tep_session_unregister('sendto'); tep_session_unregister('billto'); tep_session_unregister('shipping'); tep_session_unregister('payment'); tep_session_unregister('comments'); if(tep_session_is_registered('credit_covers')) tep_session_unregister('credit_covers'); $order_total_modules->clear_posts();//ICW ADDED FOR CREDIT CLASS SYSTEM tep_redirect(tep_href_link(FILENAME_CHECKOUT_SUCCESS, '', 'SSL')); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  15. ppollock:you have search engine turned on. I think it is in gv_send.php
  16. nam: weight needs to be 0 and downloads = true and model=GIFT*. but there is a problem with flatrate if there is more than a gv in the cart I believe. Also be sure to checkout your checkout_shipping script. The GV_ text is because you didn't include the edit the admin app_top file to include the app_top_ccgv mary: Your discount amount looks fine try editing your Uses per Coupon and Uses per Customer. They need to be reset when you change/edit an existing coupon. They default back to 0 and 1 respectively when editing a coupon. ScrltOTara: make sure your product and model# is set to GIFTwhatever and that you have enabled gift vouchers in admin-modules-order total mjm: I have it running on three sites with linkpoint and I haven't had any problems with it. What problems are you having.
  17. portalplanet: admin->modules->order totals->discount coupons click the recaclulate tax checkbox sort orders: Sub-Total 1 Shipping 2 Discount Coupons 9 Tax 20 Gift Vouchers 740 Total 900 Sometimes you want your tax to be 8 depending on your configuration.
  18. wendys: I think I read in another thread you were using someones loaded version. The version that I think you are running is not running 5.10b. peterr: I think the last one for 2.2.1 was 5.04. It had some serious problems. stevemitch2: purchasing a voucher is just like purchasing any other product except that it usually doesn't incur shipping because of the 0.00 weight and that downloads are enabled(well they usually are). Not knowing what type of shipping you are running etc that is about all I can add.
  19. peterr: yes it is wendys: I think you need to upgrade to 5.10b David: I don't know. I haven't looked at greg's changemods.
  20. if you are using ipn 2.8 or 2.9 try aggregate instead of itemized. also paypal does not take a 0 order total + shipping
  21. wendys: yes both the paypal ipn and Paypal Shopping cart IPN v2.7 (which is a rather old version now) both need mods. Lots of mods fo the v2.7 and mods for paypals checkout proces for the paypal ipn. Most of the mods for the 2.7 are listed within gregs forum. as far as the categories, I wouldn't think so. You might start out with one category and work your way up. Also if you have products within multiple categories and don't have them listed right then you will run into problems. remember that though you might see cpath=27_48 the actual category is 48 also the categories are 27,48,63 etc... MzBeanz: have no idea. you might reinstall the tables but that is no guarantee. it is always nice to have backups before modifications though especially to the data
  22. eric and wendy: I know this is going to sound quite naive on my part but there are about 4 different ways to use each of your respective payment gateway classes, one included in the distribution and 3 other contribs for both authorizenet and paypal, and 3 of them don't use normal osc methodologies. I wonder which ones and which ones you are using? No one has said. If you are using other ones than the stock ones yes they probably aren't working as you would expect because you haven't made the changes that are needed to use them properly. i.e. paypal ipn(depending on which paypal ipn you are using will also depend on how many mods need to be made) has it's own checkout_process procedure and the others do not use the normal one for all the contribs. if you look at the directions for the authorizenet direct, which I believe is documented elsewhere in this thread, it actually does a call before anything is setup for the order information and this also needs to be handled. but as explained earlier in the thread can be handled within checkout_process ...
  23. besheer: nope just one coupon at a time _g_: percentages are done like 10% notice there are no spaces. please see earlier posts. you really should upgrade to 5.10b blucollarguy: please read the install doc on creating a gv product ... on your other problems you might want to either reinstall or do a comparison of the files you are trying to run against 5.10b wendys: please read earlier post on categories and discount coupons
×
×
  • Create New...