lonnie1972
Forum Replies Created
-
The update corrected the issue on my end. Thank you for the support.
Current Permissions set for Shop Manager:
activate_plugins
x aff_access x aff_admin_affiliates x aff_admin_options x assign_product_terms x assign_shop_coupon_terms x assign_shop_order_terms copy_posts create_posts create_users x delete_affiliates_banners x delete_bookable_person x delete_bookable_persons x delete_bookable_resource x delete_bookable_resources x delete_global_availabilities x delete_global_availability x delete_others_affiliates_banners x delete_others_bookable_persons x delete_others_bookable_resources delete_others_pages delete_others_posts x delete_others_products x delete_others_shop_coupons x delete_others_shop_orders x delete_others_wc_bookings delete_pages delete_plugins x delete_posts x delete_private_affiliates_banners x delete_private_bookable_persons x delete_private_bookable_resources delete_private_pages delete_private_posts x delete_private_products x delete_private_shop_coupons x delete_private_shop_orders x delete_private_wc_bookings x delete_product x delete_product_terms x delete_products x delete_published_affiliates_banners x delete_published_bookable_persons x delete_published_bookable_resources delete_published_pages delete_published_posts x delete_published_products x delete_published_shop_coupons x delete_published_shop_orders x delete_published_wc_bookings x delete_shop_coupon x delete_shop_coupon_terms x delete_shop_coupons x delete_shop_order x delete_shop_order_terms x delete_shop_orders delete_themes delete_users x delete_wc_booking x delete_wc_bookings x edit_affiliates_banners x edit_bookable_person x edit_bookable_persons x edit_bookable_resource x edit_bookable_resources x edit_dashboard x edit_global_availabilities x edit_global_availability x edit_manage_optionss x edit_others_affiliates_banners x edit_others_bookable_persons x edit_others_bookable_resources x edit_others_manage_optionss edit_others_pages x edit_others_posts x edit_others_products x edit_others_shop_coupons x edit_others_shop_orders x edit_others_wc_bookings edit_pages edit_plugins x edit_posts x edit_private_affiliates_banners x edit_private_bookable_persons x edit_private_bookable_resources edit_private_pages edit_private_posts x edit_private_products x edit_private_shop_coupons x edit_private_shop_orders x edit_private_wc_bookings x edit_product x edit_product_terms x edit_products x edit_published_affiliates_banners x edit_published_bookable_persons x edit_published_bookable_resources edit_published_pages edit_published_posts x edit_published_products x edit_published_shop_coupons x edit_published_shop_orders x edit_published_wc_bookings x edit_shop_coupon x edit_shop_coupon_terms x edit_shop_coupons x edit_shop_order x edit_shop_order_terms x edit_shop_orders edit_theme_options edit_themes edit_users x edit_wc_booking x edit_wc_bookings export import install_languages install_plugins install_themes x list_users x manage_aftership x manage_bookings_connection x manage_bookings_settings x manage_bookings_timezones manage_categories manage_links manage_options x manage_product_terms x manage_shop_coupon_terms x manage_shop_order_terms x manage_woocommerce moderate_comments promote_users x publish_affiliates_banners x publish_bookable_persons x publish_bookable_resources x publish_manage_optionss publish_pages publish_posts x publish_products x publish_shop_coupons x publish_shop_orders x publish_wc_bookings read x read_bookable_person x read_bookable_resource x read_global_availability x read_private_affiliates_banners x read_private_bookable_persons x read_private_bookable_resources read_private_manage_optionss read_private_pages read_private_posts x read_private_products x read_private_shop_coupons x read_private_shop_orders x read_private_wc_bookings x read_product x read_shop_coupon x read_shop_order x read_wc_booking remove_users resume_plugins resume_themes rocket_manage_options rocket_preload_cache rocket_purge_cache rocket_purge_cloudflare_cache rocket_purge_opcache rocket_purge_posts rocket_purge_sucuri_cache rocket_purge_terms rocket_purge_users rocket_regenerate_critical_css rocket_remove_unused_css switch_themes unfiltered_html unfiltered_upload update_core update_plugins update_themes upload_files ure_create_capabilities ure_create_roles ure_delete_capabilities ure_delete_roles ure_edit_roles ure_manage_options ure_reset_roles x view_admin_dashboard view_site_health_checks x view_woocommerce_reports wf2fa_activate_2fa_others wf2fa_activate_2fa_self wf2fa_manage_settings wp_review_description wp_review_features wp_review_global_options wp_review_import_reviews x wp_review_links x wp_review_notification_bar wp_review_purge_comment_ratings wp_review_purge_visitor_ratings x wp_review_single_page x wp_review_user_reviews wpcf7_edit_contact_forms wpseo_bulk_edit wpseo_edit_advanced_metadata wpseo_manage_optionsOk. I may have a temporary solution….do at your own risk, but I got email to send. thanks to @cmtcav for his warning message I was able to remove source of error. MAKE A COPY OF THE WHOLE PHP FILE BEFORE ATTEMPTING! I am using SendinBlue for email, but may work for others. I am using the FREE version of WP-SMPT also…it may change the code that I removed which I listed below.
Go to your directory:
wp-content / plugins / wp-mail-smtp / vendor / guzzlehttp / guzzle / src / Client.php
In Client.php remove lines 218-248
Error resolved…
HONEST MOMENT: I have no clue what those lines do. Thats why I say do at your own risk. Looks to be some sort of error checker.
Hope it gets people to sleep earlier tonight. Lol.
HERES THE CODE I REMOVED IN CASE IT APPEARS DIFFERENTLY ON YOURS:
if ($uri->getHost() && isset($config[‘idn_conversion’]) && ($config[‘idn_conversion’] !== false)) {
$idnOptions = ($config[‘idn_conversion’] === true) ? IDNA_DEFAULT : $config[‘idn_conversion’];$asciiHost = idn_to_ascii($uri->getHost(), $idnOptions, INTL_IDNA_VARIANT_UTS46, $info);
if ($asciiHost === false) {
$errorBitSet = isset($info[‘errors’]) ? $info[‘errors’] : 0;$errorConstants = array_filter(array_keys(get_defined_constants()), function ($name) {
return substr($name, 0, 11) === ‘IDNA_ERROR_’;
});$errors = [];
foreach ($errorConstants as $errorConstant) {
if ($errorBitSet & constant($errorConstant)) {
$errors[] = $errorConstant;
}
}$errorMessage = ‘IDN conversion failed’;
if ($errors) {
$errorMessage .= ‘ (errors: ‘ . implode(‘, ‘, $errors) . ‘)’;
}throw new InvalidArgumentException($errorMessage);
} else {
if ($uri->getHost() !== $asciiHost) {
// Replace URI only if the ASCII version is different
$uri = $uri->withHost($asciiHost);
}
}
}- This reply was modified 6 years, 5 months ago by lonnie1972.
- This reply was modified 6 years, 5 months ago by lonnie1972.
- This reply was modified 6 years, 5 months ago by lonnie1972.
- This reply was modified 6 years, 5 months ago by lonnie1972.
Just curious did anyone have any OTHER issues before the email thing started happening. I had a cURL Error 6 throw some Internal Server Error 500 before THIS started happening. Just wondering if it may be related…
@kmanrite Apparently it may not be the update from what others are saying. Just glad its not on my end, otherwise I’d be staying up to fix it. No emails going out to clients sucks though…
Same for me using SendinBlue after the update today…
Versions:
WordPress: 5.3
WordPress MS: No
PHP: 7.2.25
WP Mail SMTP: 1.8.0Params:
Mailer: sendinblue
Constants: No
API Key: YesDebug:
Mailer: Sendinblue
Host must be a string <<<<<———Forum: Fixing WordPress
In reply to: Images Not LoadingThanks Tim, I appreciate it. Waiting to hear back from Speed kit for the VPS. Wondering if I have a setting that’s conflicting in W3 Cache. Of course it all started last night when I uploaded that monstrous video banner. Thought I broke something.
Forum: Fixing WordPress
In reply to: Images Not LoadingOk. Weird. Must have been something to do with the Query String in W3, or Speed Kit is rebuilding cache on CDN. I reset it last night so.
I appreciate your help.
Forum: Fixing WordPress
In reply to: Images Not LoadingStrange. Must be my computer. If you are in the shop you are seeing product images? Are you on desktop or mobile?
Forum: Fixing WordPress
In reply to: Images Not LoadingI disabled and reenabled W3 Cache. Cleared all caches. What I did do is clear the “Query String” in W3,and now the correct (new) page loads with images on desktop. Every once in a while it pull up the wrong (old) page. This is with any of the pages on the site. I’ve mainly been checking the Home and Shop pages. For the Home page it should have “Happy Veterans Day” on it just below the fold. On Shop page should have a video banner…not pumpkins.
I did contact Speed Kit…no response yet. Watching analytics and it seems people are browsing site without issues. Wonder if its one of those things where its just my computer. But its happening on my mobile as well. Mind you I’ve cleared all contents of cache on desktop and mobile.
Thanks
@hitesharun This worked for me in custom css:
.star-rating span:before, .star-rating:before, .woocommerce-page .star-rating:before {
color: #f1d554;
}Obviously you can change color to what you prefer, but thats a bit more golden.
Lonnie
Hi @florianmarianna,
I had same issue. On your Woocommerce orders page, click on “Screen Options” at the top. Tick the box “Actions” You will then see the manual reminders on the main orders screen, not the individual order.
Lonnie- This reply was modified 6 years, 6 months ago by lonnie1972.
Hey squeeky did you find a solution to this?