Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

missing shopping_cart.php for paypal, version 2.3.1


fbas

Recommended Posts

Testing out new installation of 2.3.1

 

On checkout, with paypal (the default plugin that comes with the installation, not a new plugin), it tries to go to this file: ext/modules/payment/paypal/shopping_cart.php

 

this file does not exist. the files in that directory are: express.php, express_payflow.php, standard_ipn.php

 

What should I do?

 

thanks.

Link to comment
Share on other sites

I think the problem is partly a redirect to the shopping_cart but it's added all the subdirectories to it, which aren't needed.

 

Probably getting this error by paypal module failing to run openssl.

 

I'm running on xampp on Windows, so the config for paypal standard add-on was pre-set to unix path to openssl. I've installed gnu openssl (http://sourceforge.net/projects/gnuwin32/files/openssl/0.9.8h-1/openssl-0.9.8h-1-setup.exe/download) but haven't gotten it working.

 

If anyone's run osC 2.3.1 on windows and gotten paypal working, can you give me some pointers? meanwhile I'll keep hacking away and debugging.

Link to comment
Share on other sites

Yes, got it working.

 

Note: had to install curl as well and configure location to curl in the Admin panel. http://curl.haxx.se/download.html

 

Also the only place I could see to define the location of openssl for paypal was in the file itself (and change any existing values in the database):

./includes/modules/payment/paypal/paypal_standard.php:620

      tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('OpenSSL Location', 'MODULE_PAYMENT_PAYPAL_STANDARD_EWP_OPENSSL', 'c:/xampp/openssl/bin/openssl.exe', 'The location of the openssl binary file.', '6', '4', now())");

 

database table: configuration

SELECT * 
FROM  `configuration` 
WHERE  `configuration_value` LIKE  '%openssl%'

 

and edit that value(s)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...