Latest News: (loading..)
Papal Express "select a payment method" loop
Started by brahms2, Mar 13 2007, 23:30
9 replies to this topic
#1
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
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
Posted 14 March 2007, 00:37
Papal Express? Have they souped up the Pope Mobile?
Vger
Vger
#3
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?
I laughed at that more than I should have.
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?
Vger, on Mar 14 2007, 01:37 AM, said:
Papal Express? Have they souped up the Pope Mobile?
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
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...
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...
dynamoeffects, 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.
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
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?
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
Posted 06 March 2009, 16:23
Hyperactive, 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?
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
Posted 22 March 2010, 00:36
bodymaxs, 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
Posted 24 March 2010, 13:02
omundofazdeconta, 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'));
}
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..
#10
Posted 24 March 2010, 22:32
Dennisra, 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














