- Posts: 18
- Thank you received: 0
[SOLVED] Problem with verifyPayment Method for a custom plugin
- Arnaud
- Topic Author
- Offline
- New Member
-
Less
More
5 years 10 months ago #134861
by Arnaud
Problem with verifyPayment Method for a custom plugin was created by Arnaud
Hi,
We are developping a payment plugin Paybox for our institution.
When the payment gateway(Paybox) send a notification after a payment to our site, we get an error from paybox (HTTP 303). It seems like a problem of redirection by joomla.
I read the github.com/joomdonation/os_eb_redirectgithub page but there are two differents url in exemples :
yoursitedomain.com/index.php?option=com_..._payment_plugin_name
yoursitedomain.com/index.php?option=com_...ent_method=os_paypal '
I tried with both (and with index.php/fr/....) but i get same error.
But when i call manually the url after a payment, it works (it change the status of the registrant).
Thank you for yout answer and your great job about this plugin
We are developping a payment plugin Paybox for our institution.
When the payment gateway(Paybox) send a notification after a payment to our site, we get an error from paybox (HTTP 303). It seems like a problem of redirection by joomla.
I read the github.com/joomdonation/os_eb_redirectgithub page but there are two differents url in exemples :
yoursitedomain.com/index.php?option=com_..._payment_plugin_name
yoursitedomain.com/index.php?option=com_...ent_method=os_paypal '
I tried with both (and with index.php/fr/....) but i get same error.
But when i call manually the url after a payment, it works (it change the status of the registrant).
Thank you for yout answer and your great job about this plugin
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
5 years 10 months ago #134886
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Problem with verifyPayment Method for a custom plugin
Hello
It should be yoursitedomain.com/index.php?option=com_..._plugin_name&lang=fr in your case
(replace os_payment_plugin_name with name of the payment method)
Regards,
Tuan
It should be yoursitedomain.com/index.php?option=com_..._plugin_name&lang=fr in your case
(replace os_payment_plugin_name with name of the payment method)
Regards,
Tuan
Please Log in or Create an account to join the conversation.
- Arnaud
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 18
- Thank you received: 0
5 years 10 months ago #134919
by Arnaud
Replied by Arnaud on topic Problem with verifyPayment Method for a custom plugin
Hello,
Thanks for your answer.
Unfortunately, it didn't work. I also tried : https://_____________/fr/component/eventbooking/?task=payment_confirm&payment_method=os_paybox but same issue.
I also tried to desactivate URL rewrite in SEO settings of general configuration of Joomla.
Thank you
Regards
Arnaud
Thanks for your answer.
Unfortunately, it didn't work. I also tried : https://_____________/fr/component/eventbooking/?task=payment_confirm&payment_method=os_paybox but same issue.
I also tried to desactivate URL rewrite in SEO settings of general configuration of Joomla.
Thank you
Regards
Arnaud
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
5 years 10 months ago #134924
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Problem with verifyPayment Method for a custom plugin
Hello
The URL is correct. You can try to enter that URL directly in the browser to see if there is any redirection happens? If yes, we will have to check it more. If no, then the issue causes by something different
Tuan
The URL is correct. You can try to enter that URL directly in the browser to see if there is any redirection happens? If yes, we will have to check it more. If no, then the issue causes by something different
Tuan
Please Log in or Create an account to join the conversation.
- Arnaud
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 18
- Thank you received: 0
5 years 10 months ago - 5 years 9 months ago #134955
by Arnaud
Replied by Arnaud on topic Problem with verifyPayment Method for a custom plugin
Hello,
When I enter directly : https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox&lang=fr there is no redictetion
When I enter directly : https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox there is a redirection to
https://_____/fr/?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox
In the documentation of Paybox i can read :
When this URL is called, a script present on the Merchant server at the location specified by the URL will be executed. There is no constraint on the language of this script (ASP, PHP, PERL, ...). The only limitation is that this script must not redirect and must generate an empty HTML page.
When i call the URL i can see the banner of our website so maybe it's the cause ?
Thanks a lot
Arnaud
When I enter directly : https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox&lang=fr there is no redictetion
When I enter directly : https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox there is a redirection to
https://_____/fr/?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox
In the documentation of Paybox i can read :
When this URL is called, a script present on the Merchant server at the location specified by the URL will be executed. There is no constraint on the language of this script (ASP, PHP, PERL, ...). The only limitation is that this script must not redirect and must generate an empty HTML page.
When i call the URL i can see the banner of our website so maybe it's the cause ?
Thanks a lot
Arnaud
Last edit: 5 years 9 months ago by Arnaud.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
5 years 9 months ago #134974
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Problem with verifyPayment Method for a custom plugin
Hi Arnaud
Just use https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox&lang=fr
That's the right URL. Anything else (if wrong) is from the payment plugin itself and you will have to figure out yourself
Tuan
Just use https://_____/index.php?option=com_eventbooking&task=payment_confirm&payment_method=os_paybox&lang=fr
That's the right URL. Anything else (if wrong) is from the payment plugin itself and you will have to figure out yourself
Tuan
Please Log in or Create an account to join the conversation.
- Arnaud
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 18
- Thank you received: 0
5 years 9 months ago #134994
by Arnaud
Replied by Arnaud on topic Problem with verifyPayment Method for a custom plugin
Hi Tuan,
Thank you for your answer.
I'll try again with this url, analyse differents errors and i'll get back to you.
Thanks again
Arnaud
Thank you for your answer.
I'll try again with this url, analyse differents errors and i'll get back to you.
Thanks again
Arnaud
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
5 years 9 months ago #135000
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Problem with verifyPayment Method for a custom plugin
OK Arnaud. Good luck and hope you will figure out the reason of the error and get it fixed
Tuan
Tuan
Please Log in or Create an account to join the conversation.
- Arnaud
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 18
- Thank you received: 0
5 years 9 months ago - 5 years 9 months ago #135011
by Arnaud
Replied by Arnaud on topic [SOLVED] Problem with verifyPayment Method for a custom plugin
Hi,
Problem is solved ! On our website we have a plugin "Authentification - External Login" to manage our CAS authentification.
This one redirect and there is an option to desactivate it !
One again thank you for your support !
Arnaud
Problem is solved ! On our website we have a plugin "Authentification - External Login" to manage our CAS authentification.
This one redirect and there is an option to desactivate it !
One again thank you for your support !
Arnaud
Last edit: 5 years 9 months ago by Arnaud.
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
5 years 9 months ago #135014
by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic [SOLVED] Problem with verifyPayment Method for a custom plugin
OK, great.
Please Log in or Create an account to join the conversation.
Moderators: Tuan Pham Ngoc
Support
Documentation
Information
Copyright © 2026 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.