Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

gayleenp

Pioneers
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Real Name
    Gayleen Pratt

gayleenp's Achievements

  1. I've fixed it. Found this: use html_entity_decode() function it works on php 4 Replaced the function and it works just fine. Thanks for your help today Jim.
  2. I tried all the function options on that page, but unfortunately none of them worked. I still get the same fatal error.
  3. Thanks Jim. Looks like I've got 4.4.4. The link you provided gave a suggestion as follows - would I need to put the following code within my payment module file (dps_pxpay.php)? ***** Here is how you can get this function in php < 5.1, just make sure this function is before you try and call the function. if (!function_exists('htmlspecialchars_decode')) { function htmlspecialchars_decode($str, $options="") { $trans = get_html_translation_table(HTML_SPECIALCHARS, $options); $decode = ARRAY(); foreach ($trans AS $char=>$entity) { $decode[$entity] = $char; } $str = strtr($str, $decode); return $str; } } *****
  4. I've just installed PxPay, and tried to initiate a test transaction. I am able to select DPS as the payment type, but am not getting to the credit card input screen. I get this error: Fatal error: Call to undefined function: htmlspecialchars_decode() in /XXXXXXXXXXXXXXXX/catalog/includes/modules/payment/dps_pxpay.php on line 473 Is anyone able to shed light on this? Thanks
  5. I encountered the same problem - but my catalog.php file looked different to the one in this thread (even though I am running v2.2)? It took me a while to find the instructions that related to my catalog.php, so thought I would post them here for others: Find this code (Around Line 25): '<a href="' . tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES . '</a><br>' . Directly AFTER add this: '<a href="' . tep_href_link('easypopulate.php', '', 'NONSSL') . '" class="menuBoxContentLink">Easy Populate</a><br>' .
×
×
  • Create New...