Jump to content


Corporate Sponsors


Latest News: (loading..)

* - - - - 1 votes

Papal Express "select a payment method" loop


9 replies to this topic

#1 brahms2

  • Community Member
  • 88 posts
  • Real Name:Theo Welt
  • Gender:Male

Posted 13 March 2007, 23:30

Dear Brian,

My store is now live from today. Many thanks!!!
There still seem to be a problem that I don't know how to solve.
When we sign in and choose Paypal Express we reach eventually somewhere on the payment page, at the last stage before the final confirmation, stuck in loop where it displays on a red bar the following error:
"Please select a payment method for your order."
That is also a pointer that sends me back to the Payment Method...
Yet, if I do the checkout pressing on the yellow Paypal button present on the Login page, I do not have this problem.
You may see our online store and the problem live here: www.verifresh.com/onlinestore
The Credit card payment is fine.
I would really appreciate any sugestion that may help pass over this loop.
Best,
Theodore

#2 Vger

  • Community Member
  • 16,978 posts
  • Real Name:R Anthony
  • Gender:Not Telling

Posted 14 March 2007, 00:37

Papal Express? Have they souped up the Pope Mobile?

Vger

#3 dynamoeffects

  • Community Member
  • 1,646 posts
  • Real Name:Brian Burton
  • Gender:Male
  • Location:Italy

Posted 14 March 2007, 09:15

Theodore:
Please keep the support questions to the PayPal WPP thread here:
http://forums.oscommerce.com/index.php?sho...981&st=2080

I've heard of this problem, and experienced it once, but it requires a very specific order of clicking to reproduce. Can you give me a 123 list of what you do so that I can reproduce this problem?


View PostVger, on Mar 14 2007, 01:37 AM, said:

Papal Express? Have they souped up the Pope Mobile?
I laughed at that more than I should have.
Please use the forums for support! I am happy to help you here, but I am unable to offer free technical support over instant messenger or e-mail.

#4 brahms2

  • Community Member
  • 88 posts
  • Real Name:Theo Welt
  • Gender:Male

Posted 14 March 2007, 16:24

Dear Brian,

I conformed to your advice and added the issue descriotions to yout Paypal thread here:
http://forums.oscommerce.com/index.php?sho...p;#entry1042613

Thanks a million
Theodore ;)
PS: your friends comments claimed some tears from me... i had a crack:))) ooops...

View Postdynamoeffects, on Mar 14 2007, 11:15 AM, said:

Theodore:
Please keep the support questions to the PayPal WPP thread here:
http://forums.oscommerce.com/index.php?sho...981&st=2080

I've heard of this problem, and experienced it once, but it requires a very specific order of clicking to reproduce. Can you give me a 123 list of what you do so that I can reproduce this problem?
I laughed at that more than I should have.


#5 Hyperactive

  • Community Member
  • 2 posts
  • Real Name:Clifton

Posted 17 February 2009, 08:38

So has anyone figured out the exact cause of the redirect back to the store from paypal, which gives the "checkout_payment.php?error_message=Please+select+a+payment+method+for+your+order" Error?

I cannot figure this one out to save my life. register_globals is on, shop works fine otherwise, and credit card payments work fine....

any ideas?

#6 bodymaxs

  • Community Member
  • 92 posts
  • Real Name:Caroline
  • Gender:Not Telling
  • Location:UK

Posted 06 March 2009, 16:23

View PostHyperactive, on Feb 17 2009, 08:38 AM, said:

So has anyone figured out the exact cause of the redirect back to the store from paypal, which gives the "checkout_payment.php?error_message=Please+select+a+payment+method+for+your+order" Error?

I cannot figure this one out to save my life. register_globals is on, shop works fine otherwise, and credit card payments work fine....

any ideas?

me too need an answer from someone, somewhere, anywhere!

#7 omundofazdeconta

  • Community Member
  • 1 posts
  • Real Name:O Mundo Faz de Conta, Lda.

Posted 22 March 2010, 00:36

View Postbodymaxs, on 06 March 2009, 16:23, said:

me too need an answer from someone, somewhere, anywhere!

The error: error_message=Please+select+a+payment+method+for+your+order.

is Solved by changing
if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($payment) ) || (is_object($payment) && ($payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}

BY

if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($$payment) ) || (is_object($$payment) && ($$payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}

#8 aftabn10

  • Community Member
  • 186 posts
  • Real Name:Aftab
  • Gender:Male
  • Location:Manchester

Posted 24 March 2010, 13:02

View Postomundofazdeconta, on 22 March 2010, 00:36, said:

The error: error_message=Please+select+a+payment+method+for+your+order.

is Solved by changing
if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($payment) ) || (is_object($payment) && ($payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}

BY

if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($$payment) ) || (is_object($$payment) && ($$payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}


Can any1 clarify what page this code is on? as i am getting this error as well..

#9 Dennisra

  • Community Member
  • 507 posts
  • Real Name:Joseph D. Jefferson
  • Gender:Male

Posted 24 March 2010, 15:30

View Postaftabn10, on 24 March 2010, 13:02, said:

Can any1 clarify what page this code is on? as i am getting this error as well..

checkout_confirmation.php

#10 aftabn10

  • Community Member
  • 186 posts
  • Real Name:Aftab
  • Gender:Male
  • Location:Manchester

Posted 24 March 2010, 22:32

View PostDennisra, on 24 March 2010, 15:30, said:

checkout_confirmation.php

Thanks Dennisra.

omundofazdeconta, my checkout_confirmation page is already coded like this, but I am still getting:

The error: error_message=Please+select+a+payment+method+for+your+order.

Any ideas why?

Please can you help, would really appreciate it.

Thanks in advance