Hi All,
I’m seeing the same – from the logs, it’s stopping on the following error:
PHP Fatal error: Call to undefined function sprint_f() in /var/www/html/wp-content/plugins/wp-stripe/includes/stripe-functions.php on line 190
Looking at stripe-functions.php, we see sprint_f( , which should be sprintf(
If that’s corrected, I now see the following error instead of the beachball:
Oops, something went wrong (Unexpected error communicating with Stripe. If this problem persists, let us know at [email protected]. (Network error [errno 77]: Problem with the SSL CA cert (path? access rights?)))
Looking at that error, it looks like something has broken with the ability to open SSL connections. My yum.log shows we updated to openssl-1.0.1e-30.el6_5.2.x86_64 about 8 days ago, which is about when credit card submissions to our site stopped.
So I think:
* The OpenSSL update caused wp-stripe to not be able to make connections (not sure why just yet)
* The error touched a part of the code with the sprint_f instead of the sprintf in place, which we don’t normally see
Now to figure out why…
Tony