Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Kilaz

Archived
  • Posts

    21
  • Joined

  • Last visited

Profile Information

Kilaz's Achievements

  1. Is anyone using easypopulate with a cron event to automatically update their inventory? I can't seem to figure out how to do it. I've seen several people by people in the past few years with similar request with no replies on details on actually how to pull this off. Any working examples would be great :)
  2. This is a pretty nasty one, especially for those that store credit card numbers in their database!. This same exploit can be used used to pull credit card numbers and expiration dates. I've see some attempts at pulling that information from one of my sites but luckily I don't keep CC's in the database. I looked at the access log and see this same exploit used way back in August!! so its been around a while but we haven't heard about it till now when the script kiddies got a hold of it. c-71-229-238-169.hsd1.co.comcast.net - - [29/Aug/2007:14:38:29 -0400] "GET /customer_testimonials.php?products_id=11&&testimonial_id=-8+union+select+1,2,cc_number,4,5,1,1,1+from+orders/* HTTP/1.1" 200 58608 "-" "Mozilla/6.0 (Firefox; Windows NT 5.2)" Is the user information stored in the database encrypted? how hard is it for these script kiddies to decrypt?
  3. Ok I fixed mine. Pretty simple.. I just did a "Remove" on the module, then installed the latest 2.9.2fix and installed and re-setup all the options. USPS is working again for International. Make sure you copy your USPS User ID, Etc before you remove it. I think what was happening was that the SQL configuration still reflected the old shipping types in lower case, Once I removed and reinstalled those SQL fields were updated with the right options,etc.
  4. Hi I'm having the same problem. Not sure when it started but I'm also using the USPS Methods 2.0.2 Upper Case Fix2. Can anyone provide some suggestion on how to maybe get this module into Debug mode to see why internationals not working?
  5. Is there a way to specify the starting and ending invoice # in the create iif routine so we can re-download a specific range of invoices?
  6. I had the same problem, Go into \catalog\includes\languages\english\meta_tags.php and look at the last line in the file past the ?> and you will see a extra < , you need to remove that. Regards, -K-
  7. Hi Jack, Thanks for the info but thats not what we are looking to do. I think that mod has actually been added to the Free Shipping over a certain amount contribution which is not what we are working with. We are working with the Free shipping per Product contribution which works a little different. With the Free shipping per product contribution it only gives you Free shipping as an option and none of the other shipping options are displayed. I would think it would be a pretty simple change in the code to list all the other shipping options also but my limited codeing skills just dont seem good enough to find what needs to be modified :)
  8. I have an idea. We should be able to use the "Free Shipping w/ Minimum Amount" contribution to accomplish this. Instead of having it check the Minimum amount we can have it checkt to see if the items free shipping flag is checked. If it is it will just use the Free shipping with Minimum amount shipping module which does list all the other shipping methods along with a Free shipping method. I'll try and work on that today. I'll let you know if I make any progress.
  9. Hi, I'm using the Free Shipping Per product contrib version 1.1 found here http://www.oscommerce.com/community/contributions,2517 The problem with this mod is if you have the Free shipping per item enabled it will only give the Free shipping option during the checkout process. None of the regular shipping methods are displayed. I've had customers complain about that because they needed the item overnight and where willing to pay the overnight charges, etc. My question is.. What needs to be changed in order to show both the normal shipping methods along with the free shipping method so the customer can select if they want the free shipping or not? Here is the code I found in checkout_shipping.php but I'm a little confused on if this is where I need to make my change or not. if ($free_shipping == false) { $check_free_shipping_basket_query = tep_db_query("select products_id from " . TABLE_CUSTOMERS_BASKET . " where customers_id = '" . (int)$customer_id . "'"); while ($check_free_shipping_basket = tep_db_fetch_array($check_free_shipping_basket_query)) { $check_free_shipping_query = tep_db_query("select products_free_shipping from " . TABLE_PRODUCTS . " where products_id = '" . (int)$check_free_shipping_basket['products_id'] . "'"); $check_free_shipping = tep_db_fetch_array($check_free_shipping_query); $check_free_shipping_array[] = $check_free_shipping['products_free_shipping']; } if (in_array("1", $check_free_shipping_array) && !in_array("0", $check_free_shipping_array)) { $free_shipping = true; include_once(DIR_WS_LANGUAGES . $language . '/checkout_shipping.php'); } } if ($order->delivery['country_id'] != STORE_COUNTRY && FREE_SHIPPING_TO_ALL_COUNTRIES == "false") { $free_shipping = false; } Please help if you can.
  10. Yes, there is.. http://www.oscommerce.com/community/contributions,2517
  11. JaBevan, the fix Noel posted took care of this error for me. This seems to be a problem with using the Paypal IPN with other mods like authorize.net and CCGV. catalog/checkout_process.php look for: ? require(DIR_WS_CLASSES . 'order.php'); $order = new order; require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); Change to: ? require(DIR_WS_CLASSES . 'order.php'); $order = new order; // Noels mod to get this workin (CCGV and IPN) if ($payment != 'paypal') { require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); } // End Noels mod to get this workin (CCGV and IPN)
  12. I was unable to ever figure out how to get it to work with CCGV, so I had to switch to the other paypal contribution (PayPal IPN v0.98). I have both contributions running fine now. Not everything went smoothly for me, I got alot of "cannot redefine" in there. checkout_process's CCGV parts were calling the same functions as the paypal 2.2 checkout_process were. If you rem out one, the other mod doesn't work. For me that is. First off though, Thank you very much Greg and Strider for making these mods and then taking the time to help others with them. That is the true spirit and heart of OSC. It is because of people like you that make OSC cart loyalty the best. Don't even mention another cart on this forum or you'll get your head bitten off. Tip of the hat, a hearty handshake and a heartfelt thank you goes out to you guys for this. AnyHoo... Here's what I had to do (<disclaimer>I'm also heavily modded with 55 contribs installed, I have no idea what the stock version of this looks like, so this may or may not work for some... </disclaimer>): If you do this, backup, haven't you learned that by now?!? catalog/checkout_process.php look for: require(DIR_WS_CLASSES . 'order.php'); $order = new order; require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); Change to: require(DIR_WS_CLASSES . 'order.php'); $order = new order; // Noels mod to get this workin (CCGV and IPN) if ($payment != 'paypal') { require(DIR_WS_CLASSES . 'order_total.php'); $order_total_modules = new order_total; $order_totals = $order_total_modules->process(); } // End Noels mod to get this workin (CCGV and IPN) That did it for me... Hope this helps someone, I'm happy at least.... Noel Noel, Thanks for the fix. This was the same problem I was having with the Paypal IPN and the Authorize.net Consolidated 1.7 modules. Your suggested changes did the trick. :P Kilaz
  13. Hi everyone, I'm having a problem with the User Tracking constribution and I'm having a heck of a time trying to figure out where the problem is. When I try and view the User Tracking log this error comes up. Fatal error: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition supercart of the object you are trying to operate on was loaded _before_ the session was started in /var/www/cyberestore/catalog/admin/user_tracking.php on line 179 Any ideas? Thanks in adavance, -K-
  14. Hi everyone, I'm having a problem with the User Tracking constribution and I'm having a heck of a time trying to figure out where the problem is. When I try and view the User Tracking log this error comes up. Fatal error: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition supercart of the object you are trying to operate on was loaded _before_ the session was started in /var/www/cyberestore/catalog/admin/user_tracking.php on line 179 Any ideas? Thanks in adavance, -K-
×
×
  • Create New...