News:

AbanteCart v1.4.3 is released.

Main Menu

Recent posts

#91
General Support / Re: Unable to Edit Personal De...
Last post by Basara - November 17, 2025, 06:37:33 AM
Hello.
Did you somehow remove the fields?
#92
General Discussion / Re: Could Someone Guide me in ...
Last post by Lime Charlie - November 17, 2025, 06:31:13 AM
Could you tell me which features of the addon you've found most useful?
#93
General Support / Re: PayPal Test Mode Transacti...
Last post by Ali Arslan - November 17, 2025, 05:26:49 AM
Thank you for your support.
#94
General Support / Re: Unable to Edit Personal De...
Last post by Ali Arslan - November 17, 2025, 05:25:44 AM
Thank you for your support! I have a CustomerFrm. and I'm attaching a screenshot of them! when I click on Edit then there are not fields inside it. What fields needs to be added?
#95
General Support / Re: Unable to Edit Personal De...
Last post by Basara - November 17, 2025, 05:06:04 AM
Hello.
Check that you have the CustomerFrm in the Design -> Form Manager
#96
General Support / Re: PayPal Test Mode Transacti...
Last post by Basara - November 17, 2025, 02:56:27 AM
Hello.
The "Transactions" section under the customer is not for gateway payments like PayPal. It is only for movements on the customer balance (store credit) – for example, when you manually add credit, refund to customer balance, or when the balance is used to pay for an order.
#97
General Support / PayPal Test Mode Transaction H...
Last post by Ali Arslan - November 17, 2025, 02:27:16 AM
Hope you're doing well,

I'm encountering a issues:

I'm using PayPal in Test Mode, and when I place an order, it shows as successful. I can see the invoice in the order history, but in the Transaction History, the amount is always shown as 0. I'm not sure why this is happening. Could someone please help me with this as well?

Thank you in advance for your support!
#98
General Support / Unable to Edit Personal Detail...
Last post by Ali Arslan - November 17, 2025, 02:25:23 AM
Hope you're doing well,

I'm encountering an issue where, when I go to the "Account" section and try to edit my personal details, no form or fields are visible on the page(See the attached image). There are no error messages displayed on the page, and even the Admin Panel shows no errors.

I'm unable to edit my personal information, and I'm unsure what the issue is. Could someone please help me resolve this?

Thank you in advance for your support!
#99
Support / Re: reCAPTCHA Human verificati...
Last post by Basara - November 17, 2025, 01:52:22 AM
Thanks, Kavlito, for sharing your solution
#100
Support / Re: reCAPTCHA Human verificati...
Last post by kavlito - November 15, 2025, 01:45:53 PM
I used ChatGPT to resolve this based on the error log msg. In my case, it was due to 'allow_url_fopen' not being enabled in my servers PHP settings.

QuoteCHATGPT RESPONSE:

Ahhh, perfect – that error log is the smoking gun.

file_get_contents(https://www.google.com/recaptcha/api/siteverify): failed to open stream: no suitable wrapper could be found

That means:

👉 Your AbanteCart + reCAPTCHA setup is basically fine.
👉 The problem is your server's PHP config can't make HTTPS requests.

So it's not the keys, not the domains, not v2 vs v3. It's PHP.

1. What "no suitable wrapper could be found" actually means

In PHP, file_get_contents() can fetch URLs only if:

allow_url_fopen is On, and

The https stream wrapper is available (usually via the openssl extension).

If either is missing/disabled, PHP can't handle https://... URLs, and you get exactly:

no suitable wrapper could be found

So AbanteCart is trying to call Google here:

https://www.google.com/recaptcha/api/siteverify


...but PHP doesn't know how to speak HTTPS from that environment.

2. The real fix: enable HTTPS URL support in PHP

Since you're on /home/domain/public_html/..., this is almost certainly a cPanel/shared-host style setup.

Step A – Check your PHP configuration

Option 1: From AbanteCart (if phpinfo is available)
Sometimes under System → Engine → Tools or similar, there's a "PHP Info" link.
If you see it:

Open phpinfo.

Look for:

allow_url_fopen → should be On

openssl section → should exist and be enabled

Option 2: Via a tiny phpinfo file

In public_html/, create a file called phpinfo.php with:

<?php phpinfo();


Visit https://domain.com/phpinfo.php

Check:

allow_url_fopen

openssl extension

Registered stream wrappers – you should see https listed.

Delete phpinfo.php when you're done (don't leave it live).

Step B – Turn things ON in cPanel

Log into cPanel for this account:

Go to Select PHP Version or MultiPHP INI Editor (depends on host).

Make sure:

PHP version is reasonably recent (e.g., 7.4 / 8.0 / 8.1, not something ancient).

Extensions: check the box for openssl.

In MultiPHP INI Editor (or similar), ensure:

allow_url_fopen = On


Save / Apply changes.

Clear AbanteCart cache (from admin).

Test your form again.

If you don't see those controls, or they're locked, just send this exact text to your host:

"My PHP error log shows:
file_get_contents(https://www.google.com/recaptcha/api/siteverify): failed to open stream: no suitable wrapper could be found

Please enable the PHP https stream wrapper for this account (ensure allow_url_fopen is On and the openssl extension is enabled), so file_get_contents can access HTTPS URLs."

Once they enable that, reCAPTCHA will start validating properly.

3. Optional workaround: use cURL instead of file_get_contents

Only if your host refuses to enable allow_url_fopen or https wrappers, you can hack around it by switching the reCAPTCHA library to use cURL (if cURL is available).

Look at:

/core/vendors/google_recaptcha/ReCaptcha/RequestMethod/Post.php
/core/vendors/google_recaptcha/ReCaptcha/RequestMethod/CurlPost.php  (if present)


In some versions of the official Google library, the main ReCaptcha class chooses cURL automatically when available. If AbanteCart's version is forcing Post (file_get_contents) instead of CurlPost, you could:

Change the code that instantiates RequestMethod\Post to RequestMethod\CurlPost (assuming the file exists and cURL is enabled).

But honestly:
✅ The clean, future-proof solution is to fix PHP config on the server.
That way other things (payments, external APIs, etc.) also work correctly.

4. Summary / what you should do next

Stop worrying about keys/domains – they're not the issue now.

Fix PHP https support:

Ensure allow_url_fopen = On

Ensure openssl is enabled

Confirm https appears in PHP stream wrappers

Retest the form after AbanteCart cache clear.

If you'd like, paste back a couple of lines from your phpinfo (just the bits for allow_url_fopen and whether openssl shows up), and I can confirm if the server is configured correctly.

Forum Rules Code of conduct
AbanteCart.com 2010 -