#bumbzor_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1372566814302802071
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hey. I was somehow hoping you guys can perhaps see the incoming "API" call? I don't have a transaction ID or someting ๐
Maybe the SSL librarry in use on this server is blocked on Stripe somehow?
["httplib"]=>
string(11) "curl 8.12.1"
["ssllib"]=>
string(14) "OpenSSL/1.1.1d"
You say the request is responding with an error, but you dont have a request ID?
the request seems to not even execute and I can't tell why ๐ฆ
That API is deprecated by the way, with the new version being payment method domains:
https://docs.stripe.com/api/payment_method_domains
That doesn't seem to be an issue with the Stripe API though right?
this is the line in question: https://github.com/stripe/stripe-php/blob/master/lib/HttpClient/CurlClient.php#L561
that line (the execution) of the request fails. and I can't sem to understand why. Could it be a server related thing but I can't tell whay
like a specific requirement from the SDK that is not met?
Is curl potentially not available on that particular host for some reason?
according to the systeminfo it is
cURL support enabled
cURL Information 8.12.1
I can send you the $opts value on that line if it helps
everything else seems to work. It's a WordPress site and data seems to work.
you think it's a Server side thing?
Trying to figure out how to narrow it down
but if your other Stripe SDK calls / API request work its unlikely to be a curl or environoment issue
Can you share the Stripe-PHP code for the call you're trying to make?
And what version of stripe-php are you using?
Sell digital downloads through WordPress. Contribute to awesomemotive/easy-digital-downloads development by creating an account on GitHub.
15.10.0 is the stripe php version
it's weird cause the exact same code (same plugin) works fine on other websites.
Im trying to pin point if its a cURL error or something else
So you're using stripe-php via some other plugin, rathe rthan directly?
I would suggest also trying the same request using the SDK directly without that intermediary
ok thanks