Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

spent

Archived
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Real Name
    Shane

spent's Achievements

  1. Hi, I need the libmcrpyt script on our server to make use of the DPS payment module. Problem is I don't know how to install it remotely into our host's machine. Everthing I've found on the net about installing it is to do with a local install. I'm pressuming I can just copy the files over via ftp and then run the install file, but what folder should they be uploaded to and how do I run it?
  2. I'm new to the whole MySQL thing. Could someone be kind enough to explain how I add the extra tables in the .sql file to my existing db? Either using the MySQL Administrator GUI or the command line client. Also, I seem to have two identical db showing in MySQL, one called mystore and one called localhost, which one needs updating?
  3. I have been playing around with the code in shopping_cart.php and only managed to get either the cart total working with checkout total broken or checkout total working with the cart total broken. Then I decided to turn my attention to includes\classes\order.php and quickly found a simple fix to the problem. All you have to do is find the following line: 'final_price' => $products[$i]['price'] + $cart->attributes_price($products[$i]['id']), and change it to: 'final_price' => $cart->attributes_price($products[$i]['id']),
  4. Actually I spoke too soon, it isn't working ALL fine. I'm getting the doubling thing on my checkout page. The fix for it says: Find the following code around line 230 'final_price' => $products[$i]['price'] + $cart->attributes_price($products[$i]['id']), Change it to: 'final_price' => $products[$i]['final_price'], but in my shopping_cart.php it doesn't have that line, it's got: 'final_price' => ($products_price + $attributes_price), 'attributes_price' => $attributes_price, //phpmom.com//aap Can anyone shed some light on how to fix it?
  5. Does anyone know if the fix for displaying specials with the Actualy Price in Pull Down Options contribution, found here... http://www.oscommerce.com/community/contributions,2487 can be set to show indiviual specials prices for each option? I'm currently using the Actual Atrribute Price contribution, which can only set a specials price for the base item.
  6. Thanks for this contribution Hadir, I was able to get it installed and working in no time. Does anyone have a mod that allows individual specials prices to be assigned to each option? Currently I can only set the special on the base item and change the other option prices manually, but you lose the original prices doing this.
×
×
  • Create New...