Jump to content



Latest News: (loading..)

JoshBowe

Member Since 30 Aug 2011
OFFLINE Last Active Mar 12 2013 03:28 PM
-----

Posts I've Made

In Topic: Payment & confirmation received but the order is not showing in osCommerce

12 March 2013 - 03:30 PM

View PostMrPhil, on 12 March 2013 - 02:57 PM, said:

This is just one customer? I've heard of problems with PayPal where it wasn't configured to return to the right osC page after payment was made, and just kind of vanished. If you were having the same problem with SagePay, I would expect it to affect all users of SagePay (does it?). Does SagePay return from their site to yours on a specified page? Anyway, no experience here with SagePay, but maybe it will give you an idea where to look.
No, it's just the odd customer. It's happened twice in maybe a year or so, but even if it's very rare it can have bad consequences.

Yes, SagePay returns to checkout_confirmation.php I believe but should maybe double check.

In Topic: PayPal not bringing in Second Address Line on 2.3.1

19 July 2012 - 08:13 AM

Anyone have any idea why?

In Topic: Still able to purchase an item that's set to 'Out of Stock' if it...

15 June 2012 - 03:42 PM

Anyone got any ideas? Thanks.

In Topic: Still able to purchase an item that's set to 'Out of Stock' if it...

07 June 2012 - 08:25 AM

@burt

Hi burt, I'm not exactly the most competent coder in PHP. How would I go about doing this?

	  if (STOCK_CHECK == 'true') {
		$stock_check = tep_check_stock($products[$i]['id'], $products[$i]['quantity']);
		if (tep_not_null($stock_check)) {
		  $any_out_of_stock = 1;
		  $products_name .= $stock_check;
		}
	  }

Is that the section I need to change?

In Topic: Still able to purchase an item that's set to 'Out of Stock' if it...

06 June 2012 - 02:28 PM

@DunWeb

The way that my osCommerce store is set up doesn't use automated stock levels though, when we've not got a product in stock we just set it as inactive (I should've stated this from the start, I apologise).

So the problem actually is that if a customer has an item in their shopping cart, and we set it to inactive they can still go through with the purchase.

Thanks.