Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

rikdoughty

Pioneers
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Real Name
    Richard Doughty

rikdoughty's Achievements

  1. To remove the link from the Box Heading: line 31 of includes\modules\featured.php Change $info_box_contents[] = array('align' => 'left', 'text' => '<a class="headerNavigation" href="' . tep_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a>'); to $info_box_contents[] = array('align' => 'left', 'text' => TABLE_HEADING_FEATURED_PRODUCTS );
  2. For anyone who is having problems getting the Product Information Image Width & Product Information Image Height to change the product image. It seems there is a step missing from the install instructions and the product image is still getting it's dimensions from the Small Image setting. In product_info.php around line 147, find: $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, and change it to: $product_info['products_image'], $product_info['products_name'], PRODUCT_INFO_IMAGE_WIDTH, PRODUCT_INFO_IMAGE_HEIGHT,
  3. rikdoughty

    Protx Direct v2.22

    I've been trying a few things to try get it working this morning and have found setting "$use_iframe = false; // Set to true to use iframe for 3D-Secure page" instead of "true" in the protx_process.php solves my problem. I'm now able to use 3D Secure on the test servers, so i'll stick with it set like this for now. Thanks for your help Tom.
  4. rikdoughty

    Protx Direct v2.22

    I got a response from Protx regarding the error i'm geting with 3D Secure. I'll keep trying to get it sorted and will post if i find a solution. Please see below for their response. ---- Dear Richard, Thank you for your email. The problem with your 3D secure process seems to be stemming from the handling of the PARes and MD values which need to be passed to ProtX to allow the transaction to continue for authorisation at the Issuing bank. Please refer to stages 5 and 6 of the VSP Direct Protocol and Integration Guide to resolve this issue. As for the German error it was somewhat unusal, but the error itself was not generated by ProtX it seems that there is a problem redirecting the customer to the page specified in the Term URL. Please do not hesitate to contact us with any further queries. Kind regards, Protx Support Tech Website: http://techsupport.protx.com Updates: http://techsupport.protx.com/updates.asp
  5. rikdoughty

    Protx Direct v2.22

    Thanks for the responses, they prompted me to have a look at the source code of the iframe when i'm entering the details for 3D Secure. The strange thing i noticed is the form field "amount" appears twice. Once for my vendor name and once for the amount. Please see below. <form action="/mpitools/accesscontroler;jsessionid=995678149412A160216A29C3A2C537B1?action=auth" method="post"> <div align="left"> </div> <table cellpadding="2" cellspacing="2" border="0" width="400" align="center"> <tbody> <tr> <td valign="top" width="40%">Vendor</td> <td valign="top"><input name="amount" value="AudioImages" size="30" readonly></td> </tr> <tr> <td valign="top" width="40%">Purchase Amount</td> <td valign="top"><input name="amount" value="29.99 GBP" size="30" readonly></td> </tr> <tr> <td valign="top" width="40%">Date</td> <td valign="top"><input name="date" value="Wed Sep 05 10:01:23 BST 2007" size="30" readonly></td> </tr> <tr> <td valign="top" width="40%">Pan</td> <td valign="top"><input name="pand" value="xxxxxxxxxx0006" size="30"></td> </tr> <tr> <td valign="top" width="40%">Password<br> </td> <td valign="top"><input name="password" type='password' value="" size="30"></td> </tr> <tr> <td valign="top"><br> </td> <td valign="top"><br> <input type="submit"></td> </tr> </tbody> </table> </form>
  6. rikdoughty

    Protx Direct v2.22

    Hi Folks, and thanks Tom for making this Contribution. My site is in test mode at the moment and I’m having a problem in testing the 3D Secure feature. Everything works ok when I’m not using 3D Secure. When it’s enabled I get as far as the frame and enter “password” for the pass. If enter nothing it says it need a password. If I enter anything else I get this: My site is in English btw. Any help would be greatly appreciated.
  7. I had the same problem. It's to do with the CC Card info not being unregistered from the session when an incorect number is entered. The part of the install you need to get right is : --------------------------------------------------------- 2-in checkout_confirmation.php After this line of code require('includes/application_top.php'); ADD this code //fast easy checkout start foreach ($_SESSION as $key => $val) { // print $key.' => '.$val.' - ';print_r($val);echo "<br>"; $HTTP_POST_VARS[$key] = $val; } // first two lines are for ccgv //tep_session_unregister('gv_redeem_code'); //tep_session_unregister('credit_covers'); tep_session_unregister('cc_number'); tep_session_unregister('cc_expires_month'); tep_session_unregister('cc_expires_year'); tep_session_unregister('cc_owner'); tep_session_unregister('authorizenet_cc_number'); tep_session_unregister('authorizenet_cc_expires_month'); tep_session_unregister('authorizenet_cc_expires_year'); tep_session_unregister('authorizenet_cc_owner'); //fast easy checkout end also in checkout_confirmation.php you have to unregister all cc info that you enter in the payment forms like i did for authorize-net here if you do not know the name of the key un comment the print line to see them if you are using ccgv uncomment the two lines as it says in he code right before this code around line 67 --------------------------------------------------------- If you uncomment the print $key line you will see all your cc info that you need to unregister from the session when you complete a test transaction.
×
×
  • Create New...