Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Vger

♥Ambassador
  • Posts

    16,659
  • Joined

  • Last visited

Everything posted by Vger

  1. Vger

    Protx Direct v2.22

    Resort to Pay Pal instead - until Protx get things sorted out. Vger
  2. Vger

    Protx Direct v2.22

    Unfortunately the redirects are one of the many things not working. Vger
  3. If you still have Vouchers in the admin section then you haven't removed all of the tables or the Configuration entries. Vger
  4. Vger

    Protx Direct v2.22

    There's no way at the moment to tell what is happening with particular sites - not until Protx get things sorted out at their end. If you still have problems when Protx is fully working then post back. You can go to the Protx Support Forums for feedback on the current state of play. https://support.protx.com/forum/Default.aspx Vger
  5. Vger

    Protx Direct v2.22

    This is just poor on the part of Protx. They've screwed up a few times recently, and now they've done it again. There's no excuse for a big operator like them not testing out the new system thoroughly before switching it Live. And obviously they didn't test it thoroughly or else it would be working now. Vger
  6. You need to access the database via phpMyAdmin, click on the 'configuration' label, then elect to 'Browse' its contents and go through it page by page (there will be quite a few pages) and delete all CCGV entries. Then you need to go back to the CCGV (trad) install instructions (making sure that you are using the latest version posted by myself) and manually check that you have carried out every part of the install correctly. It is not possible for anyone else to tell you what it is that you made mistakes on. Vger
  7. Steps 63-66 are not the same as steps 55-58. Steps 63-66 must be carried out. They are: catalog/admin/includes/languages/english/coupon_admin.php catalog/admin/includes/languages/english/gv_queue.php catalog/admin/includes/languages/english/gv_mail.php catalog/admin/includes/languages/english/gv_sent.php I didn't realise that you were also redoing the configuration values every time you tried to redo the database. The configuration entries will now have been replicated numerous times. You need to go through the 'configuration' table and remove all of the ccgv entries, and then rerun the sql file. If it still doesn't work then redo the entire install from start to finish, take it slowly, and do it very carefully. Vger
  8. Vger

    Protx Direct v2.22

    International Maestro cards will only be processed using 3D Secure. Vger
  9. Sorry, I've never come across that problem before, and you won't find any postings which match it in the whole of this thread. Vger
  10. Here are all of the references to FILENAME_COUPON_ADMIN: catalog\admin\coupon_admin.php(59): tep_redirect(tep_href_link(FILENAME_COUPON_ADMIN, 'mail_sent_to=' . urlencode($mail_sent_to))); catalog\admin\coupon_admin.php(235): <td class="dataTableContent" align="right"><?php if ( (is_object($cInfo)) && ($cc_list['unique_id'] == $cInfo->unique_id) ) { echo tep_image(DIR_WS_IMAGES . 'icon_arrow_right.gif'); } else { echo '<a href="' . tep_href_link(FILENAME_COUPON_ADMIN, 'page=' . $HTTP_GET_VARS['page'] . '&cid=' . $cc_list['coupon_id']) . '">' . tep_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td> catalog\admin\coupon_admin.php(292): <tr><?php echo tep_draw_form('mail', FILENAME_COUPON_ADMIN, 'action=send_email_to_user&cid=' . $HTTP_GET_VARS['cid']); ?> catalog\admin\coupon_admin.php(341): <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_COUPON_ADMIN) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a> ' . tep_image_submit('button_send_mail.gif', IMAGE_SEND_EMAIL); ?></td> catalog\admin\coupon_admin.php(366): <tr><?php echo tep_draw_form('mail', FILENAME_COUPON_ADMIN, 'action=preview_email&cid='. $HTTP_GET_VARS['cid']); ?> catalog\admin\coupon_admin.php(734): <td class="main"><?php echo tep_draw_form('status', FILENAME_COUPON_ADMIN, '', 'get'); ?> catalog\admin\coupon_admin.php(799): <td class="dataTableContent" align="right"><?php if ( (is_object($cInfo)) && ($cc_list['coupon_id'] == $cInfo->coupon_id) ) { echo tep_image(DIR_WS_IMAGES . 'icon_arrow_right.gif'); } else { echo '<a href="' . tep_href_link(FILENAME_COUPON_ADMIN, 'page=' . $HTTP_GET_VARS['page'] . '&cid=' . $cc_list['coupon_id']) . '">' . tep_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . '</a>'; } ?> </td> catalog\admin\includes\add_ccgvdc_application_top.php(5): define('FILENAME_COUPON_ADMIN', 'coupon_admin.php'); catalog\admin\includes\boxes\gv_admin.php(25): 'link' => tep_href_link(FILENAME_COUPON_ADMIN, 'selected_box=gv_admin')); catalog\admin\includes\boxes\gv_admin.php(28): $contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_COUPON_ADMIN) . '" class="menuBoxContentLink">' . BOX_COUPON_ADMIN . '</a><br>' . make sure all those references are in place and then make sure you added this to admin/includes/languages/english.php: require(DIR_WS_LANGUAGES . 'add_ccgvdc_english.php'); // CCGV Vger
  11. Add this line to the beginning of each table in the sql file: DROP TABLE IF EXISTS table_name; change table_name to the name of the table you are adding it to. Vger
  12. Once RC1 becomes the final stable version of osCommerce 2.2 MS2 then I will upgrade CCGV(trad) to work with it - but may have to keep two separate versions going. Vger
  13. Vger

    Protx Direct v2.22

    Actually we had to deal with this problem with version 3.0c, for a customer who supllies only downloads (no Shipping details sent to Protx). We used the code posted by Tom a few pages back, but we also had to do this (checks to see if delivery fields are empty and if so excludes them from what is sent). In v3.0c lines 106-115 in protx_process.php change to this: // We only include delivery address details if the fields are not empty $delivery_add = !empty($order->delivery['street_address']) ? $order->delivery['street_address'] : ''; if (ACCOUNT_SUBURB == 'true') { $delivery_add .= !empty($order->delivery['suburb']) ? ",\r\n" . $order->delivery['suburb'] : ''; } $delivery_add .= !empty($order->delivery['city']) ? ",\r\n" . $order->delivery['city'] : ''; if (ACCOUNT_STATE == 'true') { $delivery_add .= !empty($order->delivery['state']) ? ",\r\n" . $order->delivery['state'] : ''; } $delivery_add .= !empty($order->delivery['country']['title']) ? ",\r\n" . $order->delivery['country']['title'] : ''; This was supplied by Terra who updates the osCommerce Pay Pal IPN, and it is working for us on a live customer site. Vger
  14. I know this is resurrecting an old post - but I had the same problem. The last_modified field in the 'orders' table is already set to datetime, so I changed it instead to timestamp and the order correctly became available when the order was completed to 'Downloads now available' status. Vger
  15. Vger

    Protx Direct v2.22

    Yes, as I suspected, the Bank hasn't activated 3D Secure yet. Vger
  16. Vger

    Protx Direct v2.22

    No, the only one which is not allowed is MPI fails, all others are allowed to proceed. Vger
  17. Vger

    Protx Direct v2.22

    v3.0c - another problem. Got around the problems involved with zero weight downloadable virtual products. 3D Secure rules are set to allow all but MPI errors to pass. But this error is now happening. Have you come across it before? "Your 3D Secure rulebase Rejected this transaction. 3D-Secure validation returned a status of ERROR - Can\'t verify enrollment, Merchant not participating - Your credit card could not be authorized for this reason. Please correct any information and try again or contact us for further assistance." Is this a problem with the Bank supplying the Internet Merchant ID? Vger
  18. Hi, As it's name says the new release is a "Candidate" release, which means it is not the final release. When it is finalised then I will update CCGV(trad) to work with it. Vger
  19. Please read the Post Install User Guide, and the information it contains about the Sort Order. CCGV(trad) does not work when Low Order Fee is used, so I suspect the same is true using the Cash On Delivery Fee. Vger
  20. It's not possible with Gift Vouchers, because Gift Vouchers have to be set up as you would any other product. The only time they are assigned a code is when you offer a Gift Voucher to new customers upon sign-up - and you cannot set the code for that. Vger
  21. Vger

    Protx Direct v2.22

    The only things I notice on the page link provided is that the test card numbers for UK Maestro are different to those in the v3.0c module e.g. UK Maestro / EDC Maestro MAESTRO 5641820000000005 01 and not 6334900000000005 (no issue number) but that, if it works (still to test), would still leave the Solo cards not validating. Vger
  22. You can manually assign numbers to Discount Coupons. Vger
  23. Vger

    Protx Direct v2.22

    Do you know if Protx will allow the account to 'Go Live' with those cards failing the test transactions? Vger
  24. Vger

    Protx Direct v2.22

    One further question Tom. All other cards are fine, but Maestro and Solo cards are failing in Test Mode. Firstly they failed because 3D Secure wasn't turned on, and then they failed when 3D Secure was turned on. Can you test cards using the Test terminal which are subject to 3D Secure? Vger
  25. Vger

    Protx Direct v2.22

    Excellent - thank you Tom - that fixed it. You are, without doubt, the expert on all things Protx! Vger
×
×
  • Create New...