Payment Express: Banks No Longer Support PX POST

  • Posts: 26150
  • Thank you received: 4026
  • MODERATOR
11 years 1 month ago #124153

Hi,

An error just before the last line and the validation of the order.
I fix it and make a little test, it should be good. When I made the migration of the plugin I forgot to check some essentials points. When I made the plugin, I first made it for an older version of HikaShop so the migration with the new HikaShop payment system does not have the same test quality.

Sorry for the inconvenient and thanks for the tests :)

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 month ago #124215

Hi There

still not happening please find attached....

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 26150
  • Thank you received: 4026
  • MODERATOR
11 years 1 month ago #124218

Hi,

The notices are in the plugin "user points". They will be fixed in the next HikaShop release.
Is there a non notice message at the bottom of the page ?
Notices are not problematic, it does not stop the process of the page.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 month ago #124219

Hi

I stoped the user points as I dont use it, but still getting an error message

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 26150
  • Thank you received: 4026
  • MODERATOR
11 years 1 month ago #124221

Thanks !

I update the plugin in the previous post:
www.hikashop.com/media/kunena/attachments/80/h1cb02c5.zip

The final redirect will be better.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 month ago #124222

all is good now :-)

couple of things ...
first I didn't got any message to say that the payment is approved or declined,
second the shopping cart is not cleared although the parameters are set to clear it

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 month ago #124223

also i'm not getting any email when the order is confirmed while I get the email when the order is created ie before going to the payment details,

I think the redirection is not going to the proper place for all those tasks to be excuted....

Please Log in or Create an account to join the conversation.

  • Posts: 26150
  • Thank you received: 4026
  • MODERATOR
11 years 1 month ago #124274

Hi,

For the notification mail, there was no notification ask in the order history.
So I activate it in the plugin.

For the cart empty, the "after_end" view should empty the cart so there is nothing special to do in the plugin.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 week ago #128678

Hi Jerome,
After upgrading to 2.2.2, when I do a purchase and I get pxpay accepted, it sends the email of order atatus notification twice, can u please help ?

Please Log in or Create an account to join the conversation.

  • Posts: 82723
  • Thank you received: 13338
  • MODERATOR
11 years 1 week ago #128707

Hi,

I checked the code of the plugin, and that's not possible.
Are you sure that you're not receiving both the order creation notification and then the order status notification emails (which is normal) ? In that case, if you want to disable one of them, you can disable it via the menu System>Emails.

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 0
11 years 1 week ago #128719

Hi Nicolas

I checked and can confirm that its coming twice, as I stopped the order creation emails, but after doing some more checking,
I discovered there is two status steps ,as attached, do you think may it because of that

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 26150
  • Thank you received: 4026
  • MODERATOR
11 years 1 week ago #128752

Hi,

The only explanation I see it that your are calling several times the notification URL.
The "two status step" has not link with the payment plugin, nothing.

Please edit the plugin ( plugins/hikashoppayment/pxpay/pxpay.php ) and replace

		$cancel_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.$order_id.$this->url_itemid;
		$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order_id.$this->url_itemid;
By:
		$cancel_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.$order_id.$this->url_itemid;
		$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order_id.$this->url_itemid;

		if($dbOrder->order_status == $this->payment_params->verified_status) {
			$this->app->redirect($return_url);
			return true;
		}
It will not send a second time the email if the order is already confirmed.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Last edit: 11 years 1 week ago by Jerome.

Please Log in or Create an account to join the conversation.

Time to create page: 0.164 seconds
Powered by Kunena Forum