Jump to content


Corporate Sponsors


Latest News: (loading..)

Shadow-Lord

Member Since 19 Apr 2003
Offline Last Active Feb 01 2012, 03:32
-----

Topics I've Started

Is the Bug Reports Section been monitored any more

10 December 2011, 20:11

Hi,

Is the Bug Reports Section been monitored any more.

& been replaced by & breaking error reporting

08 December 2011, 04:30

In includes\functions\html_output.php
		if ( (SEARCH_ENGINE_FRIENDLY_URLS == 'true') && ($search_engine_safe == true) ) {
		  $link = str_replace('?', '/', $link);
		  $link = str_replace('&', '/', $link);
		  $link = str_replace('=', '/', $link);
		} else {
		  $link = str_replace('&', '&', $link);
		}


This is breaking error reporting in some modules.

In Sage Pay the error url should be:
http://www.example.com/checkout_payment.php?payment_error=sage_pay_server&error=4000


but it is been changed to:
http://www.example.com/checkout_payment.php?payment_error=sage_pay_server&error=4000


So no error description is shown.

osCommerce changing & to & in URL

17 May 2011, 02:27

Hi,

In osCommerce 2.3.1, URLs that contain an & are been replaced by &

tep_redirect(tep_href_link(FILENAME_CHECKOUT, 'payment_error=' . $this->code . '&error=' . $error, 'SSL'));

displays as:

checkout.php?payment_error=realex&error=DECLINED.

How can I get it to pass the error to the function get_error(), so this will work:

      switch ($_GET['error']) {
          case '101':
            $error_message = MODULE_PAYMENT_REALEX_CARD_ERROR_INVALID_EXP_DATE;
	    break;

          case '102':
            $error_message = MODULE_PAYMENT_REALEX_CARD_ERROR_ERROR_EXPIRED;
            break;

          case '103':
            $error_message = MODULE_PAYMENT_REALEX_CARD_ERROR_ERROR_DECLINED;
            break;

          case '200':
            $error_message = MODULE_PAYMENT_REALEX_CARD_ERROR_ERROR_CVC;
            break;

          case '205':
            $error_message = MODULE_PAYMENT_REALEX_CARD_ERROR_ERROR_CVC;
            break;

          default:
            $error_message = test;
            break;
      }

I need help with a charity website

12 May 2011, 13:36

Hi,

I am using osCommerce for setting up a charity website.
The charity is selling tickets. So the only product on the site will be a ticket.

If the person purchases a ticket, I need it to give that person a ticket number in there checkout confirmation email.
If they purchase more than 1 ticket at a time e.g. 4 tickets, they should get 4 ticket numbers in the email.
These ticket numbers should be linked to their order_id number for tracking who owns which ticket.

Can anyone help with the checkout_process.php file, so that it will do this.

Thanks

PayPal Express skipping Confirmation Page

15 April 2011, 04:37

Hi,

Is there a way to get PayPal Express to go to the Confirmation Page and then go to PayPal.
The Customer can not confirm their order as it goes straight to PayPal from the Select Payment Type page.

Thanks,