Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Paypal IPN Module v1.3 problems


adrian.pearce

Recommended Posts

Posted

I am trying to install the Paypal IPN Module v1.3 into a Osc Template. I have followed the instructions like this:

 

Copy

ext folder to root

includes/languages/english/modules/payment/paypal_ipn.php

includes/modules/payment/paypal_ipn.php

 

As soon as i add paypal_ipn.php to the modules directory, it removes all modules 2checkout, PSiGate and secpay from the list and Paypal IPN is not shown.

 

I have even tried removing the old Paypal module

 

Can anyone help me on this please.

 

Adrian............

Posted
I am trying to install the Paypal IPN Module v1.3 into a Osc Template. I have followed the instructions like this:

 

Copy

ext folder to root

includes/languages/english/modules/payment/paypal_ipn.php

includes/modules/payment/paypal_ipn.php

 

As soon as i add paypal_ipn.php to the modules directory, it removes all modules 2checkout, PSiGate and secpay from the list and Paypal IPN is not shown.

 

I have even tried removing the old Paypal module

 

Can anyone help me on this please.

 

Adrian............

 

Do i have to edit any files to make this work....

Posted
Has anyone come across this problem before or any idea what it can be.

 

Please i need help.....

 

 

 

Well Adrian I really hope you have a backup of the those areas that you effected. I'm not sure what or how you uploaded your files as it seems that you over-wrote the entire directorys instead of just uploading the file. I've see something like this when using WS-FTP when it asks you if you want to replace a file or the directory but it was an old version of WS-FTP and I believe that was changed in the latest versions. If you have a backup which should be your orginal OSC download that hasn't been changed the replace those two folders and remove ext form the root. Start from the beginning and try again but be sure to back up everything and make sure everthignis working before you start again.

Posted
Well Adrian I really hope you have a backup of the those areas that you effected. I'm not sure what or how you uploaded your files as it seems that you over-wrote the entire directorys instead of just uploading the file. I've see something like this when using WS-FTP when it asks you if you want to replace a file or the directory but it was an old version of WS-FTP and I believe that was changed in the latest versions. If you have a backup which should be your orginal OSC download that hasn't been changed the replace those two folders and remove ext form the root. Start from the beginning and try again but be sure to back up everything and make sure everthignis working before you start again.

 

Thanks for the reply, but i have managed to sort it.

For some reason the Paypal IPN files were corrupt. What i did was copy the files from another one of my shops that i know works and this corrected my problem.

I always backup when making changes.

 

Adrian......

Posted
Thanks for the reply, but i have managed to sort it.

For some reason the Paypal IPN files were corrupt. What i did was copy the files from another one of my shops that i know works and this corrected my problem.

I always backup when making changes.

 

Adrian......

 

Another problem i have now is that the total amount is not being transfered to the Paypal site, it is reading ?0.00.

 

Does anyone know what is going on, please help.

Posted
Another problem i have now is that the total amount is not being transfered to the Paypal site, it is reading ?0.00.

 

Does anyone know what is going on, please help.

 

Please Please Please has anyone got the answer why when going over to Paypal the amount is showing ?0.00

 

I have installed Paypal IPN v1.3

 

Others have the same problem.

 

Can someone help.

 

Adrian......

Posted
Please Please Please has anyone got the answer why when going over to Paypal the amount is showing ?0.00

 

I have installed Paypal IPN v1.3

 

Others have the same problem.

 

Can someone help.

 

Adrian......

 

Is this is a common problem with this module. Is anyone else having the same issues?

Posted
Is your Paypal IPN v1.3 working with OSC 2.2.

 

Please let me know........

 

I now have a list of 5 people with this Paypal problem where details of the transaction aren't being trasnsfered to Paypal.

 

Any more.....

Posted
I now have a list of 5 people with this Paypal problem where details of the transaction aren't being trasnsfered to Paypal.

 

Any more.....

 

Hi All, i have been trying to sort out this problem for a while now. I think i have got a bit further and someone might know the answers.

The line of code which is found in includes/modules/payment/paypal_ipn.php is set to USD, if i set this in admin/modules to the same then my total amount gets passed over to paypal. If i set this to GBP both in the line of code below and admin, then it doesn't pass the amount over to paypal.

Any other currency works apart from GBP. Can anyone help please........

 

 

if (!in_array($my_currency, array('AUD', 'CAD', 'EUR', 'GBP', 'JPY', 'USD'))) {

$my_currency = 'USD';

Posted

Hi All, i have been trying to sort out this problem for a while now. I think i have got a bit further and someone might know the answers.

The line of code which is found in includes/modules/payment/paypal_ipn.php is set to USD, if i set this in admin/modules to the same then my total amount gets passed over to paypal. If i set this to GBP both in the line of code below and admin, then it doesn't pass the amount over to paypal.

Any other currency works apart from GBP. Can anyone help please........

if (!in_array($my_currency, array('AUD', 'CAD', 'EUR', 'GBP', 'JPY', 'USD'))) {
	$my_currency = 'USD';
[/quote]

Sorted it......  :thumbsup: 

I feel so stupid, it was so easy i could kick myself.

Firstly to use the British Pound, i set this in includes/modules/payment/paypal_ipn.php

[code]if (!in_array($my_currency, array('AUD', 'CAD', 'EUR', 'GBP', 'JPY', 'USD'))) {
	$my_currency = 'USD';

 

to:

 

if (!in_array($my_currency, array('AUD', 'CAD', 'EUR', 'GBP', 'JPY', 'USD'))) {
	$my_currency = 'GBP';

 

then login to admin goto module/paypal IPN and set the currency to Selected Currency.

 

This is the part i did wrong -

 

in the admin panel goto Localization then Currencies. My default is British Pound and my code was set to POU and should be GBP.

Try it, it works........ :thumbsup:

Archived

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

×
×
  • Create New...