Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

cdamianou

Pioneers
  • Posts

    236
  • Joined

  • Last visited

Posts posted by cdamianou

  1. I have the following set up in my module.

     

    Transaction Mode - P Production

    Transaction Type - Auth

    Enable Billing information - True

    Enable Delivery information - True

     

     

    My problem is that it goes to HSBC's site and transaction is taken then diverted back to the website. Even though it does all that, the sale is not recorded in Admin or under customers account.

     

    Anyone experience something similler or can suggest what the problem might be.

     

    Thanks in advance.

  2. Hi

     

    Is their anyone that is willing to take on a paid installation to get HSBC setup on my site?

     

    It was working ok until HSBC changed or upgraded something to their systems. Since then duplicate payments were being taken, cards declined etc. So basically not working as it should be.

     

    I am happy to pay someone to get this working ok on my store.

     

    Anyone?

     

    Thanks in advance.

  3. Hi can someone help me please.

     

    The points and rewards module was working fine for me. I’m using version 1.5.

     

    However now for some reason I cannot figure out, it is not displaying the customers with pending points in Admin.

     

    It says (Displaying 1 to 20 (of 33 orders)) and has the dropdown box as though their is 2 pages of info but no customers are being displayed.

     

    Does anyone know what the problem is?

     

    Thanks in advance.

  4. Hiya Guys

     

    I was wondering if someone can help me.

     

    I have just noticed that Google Analytics doesn’t report the same sales totals as oscommerce. For example Google analytics may have £5000 1000 orders with 2000 items but in reality this was £5500 1050 orders with 2100 items.

     

    I cant figure out why its showing this discrepancy as it seems to be working fine. It looks like some paypal transactions might be the problem.

     

    Any ideas?

  5. Excellent. this mod is installed and works perfectly.

     

    However I do have a couple of questions.

     

    Firstly I didn’t realize you had to duplicate a product if you wanted to still have that product in your shop as a full price item.

     

    Secondly in latest version it states the following:

    - Added configurable text in place of price on product info page for carrots.

    e.g. "Free with a $50 purchase"

    or "Only $9.99 with a $30 purchase"

     

    I cant see nay configurable text in the product info page, just a button that says - Product is carrot, with a tick box.

     

    Am i missing something here?

  6. A few problems with this contribution for me.

     

    Over Christmas I had a few people purchase Gift Vouchers. Only then did I realize their had problems with this contribution for me. When the customer emailed the Gift Vouchers to someone, that person was unable to redeem them. It is basically impossible.

     

    Secondly, if a customer has a gift voucher amount and bonus points, the customer cannot pay via credit cards or any other payment method.

     

    Thirdly, whenever I click on the report button for discount coupons, nothing happens.

     

     

    Can anyone shed some light on this for me please?

     

    Thanks in advance.

  7. Can anyone help with my previous post?

     

    Hiya Guys

     

    I was wondering if someone can help me here.

     

    I have paypal ipn installed as one of my payment method. ?everything was working fine, orders paid via paypal and customers returning back to site this orders being recorded.

     

    A couple of days ago my host upgraded their Mysql so a few modifications had to be made on the site.

     

    Now no one that pays via paypal doesn’t come back to the store and their orders are not recorded.

     

    Can anyone help in sorting this out. I have no idea as to what part of the contribution is at fault and how to fix it.

     

    Much appreciated

     

    Costas

  8. Hiya Guys

     

    I was wondering if someone can help me here.

     

    I have paypal ipn installed as one of my payment method. ?everything was working fine, orders paid via paypal and customers returning back to site this orders being recorded.

     

    A couple of days ago my host upgraded their Mysql so a few modifications had to be made on the site.

     

    Now no one that pays via paypal doesn’t come back to the store and their orders are not recorded.

     

    Can anyone help in sorting this out. I have no idea as to what part of the contribution is at fault and how to fix it.

     

    Much appreciated

     

    Costas

  9. When people pay via paypal it works fine, as iut should. However today someone paid via paypal but it was a Pending eCheque Payment. I received a paypal notice but no order from the store. It is not showing an order for this custiomer under Customer Orders in admin. When i log inot this customers account, it shows the product as his last purchase.

     

    Can anyone shed some light on this?

     

    Its much appreciated.

  10. Hi

     

    I am stuck with step 5. This has got me confused. Sorry for not understanding.

     

    5. Update the file "admin/categories.php" with fields for products_reorder and products_reorder_to.

     

    Insert the following after the PRODUCT_QUANTITY line in the new_product section:

     

    <tr>

    <td nowrap><font face="<? echo TEXT_FONT_FACE; ?>" size="<? echo TEXT_FONT_SIZE; ?>" color="<? echo TEXT_FONT_COLOR; ?>"> <? echo TEXT_PRODUCTS_REORDER; ?> </font></td>

    <td nowrap><font face="<? echo TEXT_FONT_FACE; ?>" size="<? echo TEXT_FONT_SIZE; ?>" color="<? echo TEXT_FONT_COLOR; ?>"> <input type="text" name="products_reorder" value="<? echo @$pInfo->reorder; ?>"> </font></td>

    </tr>

    <tr>

    <td nowrap><font face="<? echo TEXT_FONT_FACE; ?>" size="<? echo TEXT_FONT_SIZE; ?>" color="<? echo TEXT_FONT_COLOR; ?>"> <? echo TEXT_PRODUCTS_REORDER_TO; ?> </font></td>

    <td nowrap><font face="<? echo TEXT_FONT_FACE; ?>" size="<? echo TEXT_FONT_SIZE; ?>" color="<? echo TEXT_FONT_COLOR; ?>"> <input type="text" name="products_reorder_to" value="<? echo @$pInfo->reorder_to; ?>"> </font></td>

    </tr>

     

    Change the sql statements to support the two new fields.

     

    OR: just add the fields products_reorder, products_reorder_to, to each of these queries.

     

    At the action == insert_product section:

    if (tep_db_query("insert into products (products_name, products_description, products_quantity, products_reorder, products_reorder_to, products_model, products_image, products_url, products_price, products_date_added, products_weight, products_status, products_tax_class_id) values ('" . $HTTP_POST_VARS['products_name'] . "', '" . $HTTP_POST_VARS['products_description'] . "', '" . $HTTP_POST_VARS['products_quantity'] . "', '" . $HTTP_POST_VARS['products_reorder'] . "', '" . $HTTP_POST_VARS['products_reorder_to'] . "', '" . $HTTP_POST_VARS['products_model'] . "', '" . $HTTP_POST_VARS['products_image'] . "', '" . $HTTP_POST_VARS['products_url'] . "', '" . $HTTP_POST_VARS['products_price'] . "', '" . $HTTP_POST_VARS['products_date_added'] . "', '" . $HTTP_POST_VARS['products_weight'] . "', '" . $HTTP_POST_VARS['products_status'] . "', '" . $HTTP_POST_VARS['products_tax_class_id'] . "')")) {

     

    At the action == update_product:

    tep_db_query("update products set products_name = '" . $HTTP_POST_VARS['products_name'] . "', products_description = '" . $HTTP_POST_VARS['products_description'] . "', products_quantity = '" . $HTTP_POST_VARS['products_quantity'] . "', products_reorder = '" . $HTTP_POST_VARS['products_reorder'] . "', products_reorder_to = '" . $HTTP_POST_VARS['products_reorder_to'] . "', products_model = '" . $HTTP_POST_VARS['products_model'] . "', products_image = '" . $HTTP_POST_VARS['products_image'] . "', products_url = '" . $HTTP_POST_VARS['products_url'] . "', products_price = '" . $HTTP_POST_VARS['products_price'] . "', products_weight = '" . $HTTP_POST_VARS['products_weight'] . "', products_tax_class_id = '" . $HTTP_POST_VARS['products_tax_class_id'] . "', products_status = '" . $HTTP_POST_VARS['products_status'] . "' where products_id = '" . $HTTP_GET_VARS['pID'] . "'");

     

    At the action == new_product:

    $product_query = tep_db_query("select products_name, products_description, products_quantity, products_reorder, products_reorder_to, products_model, products_image, products_url, products_price, products_weight, products_date_added, products_status, products_tax_class_id, manufacturers_id from products where products_id = '" . $HTTP_GET_VARS['pID'] . "'");

     

    At the else part of action == new_product_preview:

    $product_query = tep_db_query("select p.products_name, p.products_description, p.products_quantity, p.products_reorder, p.products_reorder_to, p.products_model, p.products_image, p.products_url, p.products_price, p.products_weight, p.products_date_added, p.products_status, p.manufacturers_id, m.manufacturers_name, m.manufacturers_image from products p, manufacturers m where p.products_id = '" . $HTTP_GET_VARS['pID'] . "' and p.manufacturers_id = m.manufacturers_id");

     

     

    AFTER:

    $products_count = 0;

    // $rows = 0; // this shouldnt be reset

     

    ADD LINES:

    $products_query = tep_db_query("select p.products_id, p.products_name, p.products_quantity, p.products_reorder, p.products_reorder_to, p.products_image, p.products_price, p.products_date_added, p.products_status from products p, products_to_categories p2c where p.products_id = p2c.products_id and p2c.categories_id = '" . $current_category_id . "' order by products_name");

     

     

    Any suggestions?

  11. Hiya

     

    I have installed the UK VAT SUMMERY report contribution http://www.oscommerce.com/community/contri...,uk+vat+summary

     

    It doesn?t seem to want to work for me. Unfortunately the install files were of no help explaining how this works etc, and I am confused as to why it doesn?t work.

     

    The report is supposed to give you Total VAT transacted between a specified period, and also total for the UK and Europe separately.

     

    I also don?t believe that all the European countries have been added.

     

    Has anyone managed to get this to work?

     

    This seems to be the ideal contribution for all Bussy UK stores taht are VAT registered.

     

    Thanks in advance.

×
×
  • Create New...