forgetme
Forum Replies Created
-
I had the same issue and I believe I have located the root cause. If you have yours go down again then I recommend seeing if your issue matches my post and then see the referenced Github pull request for the changes I made to the bundle.pem certificate to resolve this issue.
@clifton11221,
I had the same issue and I believe I have located the root cause.See my post and the referenced Github pull request for the changes I made to the bundle.pem certificate to resolve this issue.
- This reply was modified 5 years, 8 months ago by forgetme.
@captnanubis I had the same issue and I believe I have located the root cause.
See my post and the referenced Github pull request for the changes I made to the bundle.pem certificate to resolve this issue.
After updating the included bundle.pem file with Paypal’s new certificates everything is fixed and working great.
I’ve submitted a pull request for this change in the Github repo, so it can hopefully fix others issues as well.
https://github.com/woocommerce/woocommerce-gateway-paypal-express-checkout/pull/822
Found this in my servers error log and it creates a new error entry every time I try to add something to my cart.
[Fri Sep 25 17:13:39.920770 2020] [proxy_fcgi:error] [pid 1115169:tid 140157063788288] [client 69.162.231.16:55912] AH01071: Got error 'PHP message: PHP Warning: A non-numeric value encountered in /public_html/wp-content/plugins/wordpress-2-step-verification/includes/Wp2sv_Limit.php on line 76', referer: https://forgetmeknot.co/product/caroline/This error only shows up if I try to add something to the cart as a Guest. If I’m logged-in as the admin then it adds to the cart without any error.
As for capturing the AJAX request do you have a recommendation of tools to use to do this? From what I found online I’m either using them wrong or their isn’t an AJAX request.
Forum: Plugins
In reply to: [WP 2-step verification] AfterPay API no longer communicatingNot finding anything in WordPress or Server logs. I’ll close this for now until I’m able to reproduce with logs.
Everything I have read online says this is due to the .PEM file included in the plug-in which when checked showed it included expired certificates.
Forum: Plugins
In reply to: [WP 2-step verification] Jetpack no longer communicating with site.Downgraded back to 2.3.0 and everything syncs just fine with the Woocommerce app.
- This reply was modified 5 years, 9 months ago by forgetme.
Forum: Plugins
In reply to: [WP 2-step verification] Jetpack no longer communicating with site.2.4.1 actually didn’t fix everything. I’m no longer getting the Jetpack error, but my Woocommerce mobile app is no longer able to communicate with my site through Jetpack.
If I disable your plug-in then everything works great.
Forum: Plugins
In reply to: [WP 2-step verification] Jetpack no longer communicating with site.2.4.1 fixed my connection with Jetpack/WordPress.com.
Thanks
Forum: Plugins
In reply to: [WP 2-step verification] Woocommerce 2-step page gives 404Thanks that fixed the 404.
Forum: Plugins
In reply to: [WP 2-step verification] Jetpack no longer communicating with site.How do I setup a app password with Jetpack/WordPress.com?
I’ve searched all over WordPress.com and can’t find any way to use a custom app password.
- This reply was modified 5 years, 9 months ago by forgetme.
Forum: Plugins
In reply to: [WP 2-step verification] Jetpack no longer communicating with site.Do I need to be using an App Password with Jetpack? If so, I’m not sure how to do that. All I know is that this wasn’t required or an issue until the latest 2 updates.
Thanks.
Thanks for the quick turn around on a fix.
Forum: Plugins
In reply to: [Easyship WooCommerce Shipping Rates] Warning: session_start()@daniel_richard and @hafizusman,
After months of no response from the plug-in developer, a plug-in update that made no difference, and no luck getting customer support to put me in touch with the plug-in developers, I believe I have resolved the issue myself. Use at your own risk as I am not the plug-in developer, but this is working for me.Go into the following php file: /wp-content/plugins/easyship-woocommerce-shipping-rates/easyship.php
Find Lines 67-74:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) session_start(); }And replace lines 67-74 with the following:
/** * Register a session */ public function register_session() { if (session_status() == PHP_SESSION_NONE && !headers_sent()) { session_start(); session_write_close(); } }Run Site Health test and the errors should all be gone.
- This reply was modified 5 years, 9 months ago by forgetme.