0
Hello,
we searched the forum and found previous responses to our problem, we are getting the following error when we try to process a payment using Sprite:
"Invalid positive integer
Payment process not completed"
We found somebody else had ask the same question in your forum, press the following link:
https://www.joomlathat.com/support/invoice-manager/stripe-payment-completed-error-message
We implemented the solution provided by one of the users:
On the plugin file /plugins/invoices/payment_stripe/payment_strip.php near line 101 the line reads 'amount' => $payment->amount * 100, // *100 because...
The issue is the array object $payment does not have an item "amount" ... the correct variable is payment_amount ...
So I changed the code in the stripe plugin as follows:
try {
$charge = \Stripe\Charge::create(array(
'customer' => $customer->id,
'amount' => $payment->payment_amount * 100, // *100 because stripe amount only accepts cents.
'currency' => $this->params->get( 'currency', 'USD' )
));
But the problem continues.
Please let us know if we need to create a login in our website, for you.
Looking forward to your kind response.
B. Mendoza
we searched the forum and found previous responses to our problem, we are getting the following error when we try to process a payment using Sprite:
"Invalid positive integer
Payment process not completed"
We found somebody else had ask the same question in your forum, press the following link:
https://www.joomlathat.com/support/invoice-manager/stripe-payment-completed-error-message
We implemented the solution provided by one of the users:
On the plugin file /plugins/invoices/payment_stripe/payment_strip.php near line 101 the line reads 'amount' => $payment->amount * 100, // *100 because...
The issue is the array object $payment does not have an item "amount" ... the correct variable is payment_amount ...
So I changed the code in the stripe plugin as follows:
try {
$charge = \Stripe\Charge::create(array(
'customer' => $customer->id,
'amount' => $payment->payment_amount * 100, // *100 because stripe amount only accepts cents.
'currency' => $this->params->get( 'currency', 'USD' )
));
But the problem continues.
Please let us know if we need to create a login in our website, for you.
Looking forward to your kind response.
B. Mendoza
Responses (9)
-
Accepted Answer
-
Accepted Answer
0Hi,
I went and looked for the Sprite Payment plugin but the only one in the folder is the one for PayPal.
Please check.-
Germinal Campsmore than a month agoHello,
Make sure you go to the PRIVATE downloads area to download the plugin...
http://www.joomlathat.com/account/downloads
-
-
Accepted Answer
0Hi, I have the same problem. My clients were just telling me that it did not work. I learned that all their info can be found back in the Stripe account though.
The amount is 489€
However it is payed by a US Credit Card. Maybe something with the currency?
I have downloaded 1.1.1 and I will let you know what happens to my next payment in order to let you know if it fixed my problem.
Thanks -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Hello, is there a way to keep the conversations private? It can be confusing and not really appreciated that somebody else jumps in a
conversation not initiated by the one person adding to our post.
Please don't take us wrong, is just a matter of customer support one can feel comfortable with.
With regards to the plugin:
We did install the plugin, these are the changes we see:
1. we continue to get the same error:
Invalid positive integer
Payment process not completed
We got a n email from Sprite telling us that they got our payment info, but the Payments (in our Sprite profile) do not show
the transaction as finished.
All our attempts to make a payment are recorded in our Sprite account, but without payment activity.
Looking forward to your kind reply. -
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »