ashevillehoney Posted October 2, 2009 Posted October 2, 2009 I need to update the PayPal code on my 'check out confirmation' page but it's no where to be found. Can anyone help me find it :unsure: ? The problem is https://paypal.com/cgi-bin/webscr/ is incorrect and I need to change it so my customers can check out. Thank you so much!
satish Posted October 2, 2009 Posted October 2, 2009 Check the payment module file in includes/modules/payment. There You will find this value. // class constructor function paypal_standard() { global $order; $this->signature = 'paypal|paypal_standard|1.0|2.2'; $this->code = 'paypal_standard'; $this->title = MODULE_PAYMENT_PAYPAL_STANDARD_TEXT_TITLE; $this->public_title = MODULE_PAYMENT_PAYPAL_STANDARD_TEXT_PUBLIC_TITLE; and if (MODULE_PAYMENT_PAYPAL_STANDARD_GATEWAY_SERVER == 'Live') { $this->form_action_url = 'https://www.paypal.com/cgi-bin/webscr'; } else { $this->form_action_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; } this form url results in that. Change this Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
ashevillehoney Posted October 2, 2009 Author Posted October 2, 2009 I got it fixed! THANK YOU SO MUCH!!! ~Deni Check the payment module file in includes/modules/payment. There You will find this value. // class constructor function paypal_standard() { global $order; $this->signature = 'paypal|paypal_standard|1.0|2.2'; $this->code = 'paypal_standard'; $this->title = MODULE_PAYMENT_PAYPAL_STANDARD_TEXT_TITLE; $this->public_title = MODULE_PAYMENT_PAYPAL_STANDARD_TEXT_PUBLIC_TITLE; and if (MODULE_PAYMENT_PAYPAL_STANDARD_GATEWAY_SERVER == 'Live') { $this->form_action_url = 'https://www.paypal.com/cgi-bin/webscr'; } else { $this->form_action_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; } this form url results in that. Change this Satish
Recommended Posts
Archived
This topic is now archived and is closed to further replies.