Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Hwlp! I need to find a piece of code and I'm not sure how to do it!


ashevillehoney

Recommended Posts

Posted

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.

Posted

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...