Matt Biscay
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Better Emails] No longer available? What’s the reason?The WP Better Emails plugin for WordPress is vulnerable to Stored Cross-Site Scripting in versions up to, and including, 0.4 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level permissions and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only affects multi-site installations and installations where unfiltered_html has been disabled.
Hi,
Thanks for the tip – it solved the issue.
If anyone comes by this thread and has related post thumbnails not showing up when behind Cloudflare: make sure minimum TLS version is set to TLS 1.2 in the TLS tab of your Cloudflare account.
Cheers,
Matt
Hi Xaver,
Did you get a chance to read my suggestions above?
Cheers,
Matt
Hi @lastsplash
I’ve disabled, removed and reinstalled Jetpack. I get the SSL error on the first go (I have no idea why Jetpack is using SSLv3, it’s obsolete and unsecure) but then it goes through.
I tested the connection with Jetpack and it returns that all is well.
The images can be accessed directly. They were previously hosted on a subdomain but are now back on the main domain.
Is there a way to clear the cache so the new URLs can be reindexed?
Thank you,
Matt
Hi Daniel,
Is there a way to bypass the CDN with a filter? As you said, it’s turned off so I don’t know why the images are served from the CDN.
I disabled, enabled, reinstalled and cleared the caches – no dice.
Thank you,
MattForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Schedule advert gives 500 errorHi Greg,
Thank you very much, it works fine now.
Have a great day,
MattForum: Plugins
In reply to: [Sky Login Redirect] Redirect login to: the previous page – doesn’t workHi,
Have you set a default rule in the plugin’s settings?
Best,
MattForum: Plugins
In reply to: [Sky Login Redirect] Rule not adding after savingHi,
Due to lack of activity, I’m marking this thread as solved. Feel free to reopen if needed.
Forum: Plugins
In reply to: [Sky Login Redirect] Rule not adding after savingHi Sam,
Which WP version are you using?
What happens if you click Add rule, modify it and then save the options?
Thank you,
MattForum: Plugins
In reply to: [Sky Login Redirect] Doesn’t workHi,
I’m closing this thread as it got no response.
Best,
MattForum: Plugins
In reply to: [Sky Login Redirect] Doesn’t workHi @shovonbk
Thank you for reaching out and for sending the video.
Are you using WooCommerce’s My Account page for the login?
Thank you,
MattForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] PHP8 – errorHi Greg,
I searched for any reference to
mce_external_pluginsbut apart from the Avada builder, I had no luck.The add listing page is very basic and only uses WPAdverts, the Avada builder is not used on this page. I also checked for custom codes but no dice regarding mce_external_plugins.
Thank you,
MattForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] PHP8 – errorHi Greg,
The URL is https://newoldcars.com/vehicle-submission/ but we had to switch to PHP7.4 so that users can keep on adding their listings.
We use WPAdverts, with some addons (Authors, Custom Fields, Mark as Sold, Recaptcha, Paypal).
The submission page is using the WPA custom fields.
Thank you,
MattForum: Reviews
In reply to: [Sky Login Redirect] The only plugin that is working!Forum: Plugins
In reply to: [Sky Login Redirect] Can’t Redirect To A Completely Different URLHi Ron,
That’s a limitation from WordPress: by default,
wp_safe_redirect()only accepts urls from the origin domain, not external URLs, for safety reasons.If you wish to whitelist some external URLs, you need to add this snippet of code to your uitlity plugin (or your child theme’s
functions.php):add_filter( 'allowed_redirect_hosts', 'slr_extend_allowed_domains_list' ); function slr_extend_allowed_domains_list( $hosts ){ $hosts[] = 'example.com'; $hosts[] = 'utopique.net'; return $hosts; });Best regards,
Matt