Lukasz
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Why does contact form 7 not handle 400 to 500 level errors?Thank you guys, I tried on Fresh install, I simulated some errors by breaking smtp config or uploading very large file size attachment(50MB+). Large file did cause the hanging, form was stuck in submitting status with error in console and no user error message: “413 Content Too Large”
But it worked worked much better for second scenario with broken/failed smtp server, it showed user error, so I do have issue in my code, I will investigate that, the other error 413 is not a concern.Thank you guys, appreciate you!
Forum: Plugins
In reply to: [Contact Form 7] Why does contact form 7 not handle 400 to 500 level errors?Thanks @takayukister and @ytsuyuzaki ! , I wrote that in haste, I meant the successful status codes 200 range are handled but http 400-500 codes are causing the form to hang(which is my real issue).
Based on what @ytsuyuzaki mentioned I will investigate on a fresh install on my server to see how it behaves since I do have alot of custom code that may be interfering with how those errors are handled.
Forum: Plugins
In reply to: [Contact Form 7] Why does contact form 7 not handle 400 to 500 level errors?Forum: Plugins
In reply to: [Contact Form 7] Form stopping working with UpgradeIt’s showing as “status”: “mail_failed”…There’s a few things you will need to check regarding your mail config, and potentially contacting your host. WP 6.9 also introduced some breaking mail changes, especially if your previous email config was not setup correctly. Some links for reference below.
https://contactform7.com/faq/i-get-an-error-message-with-a-red-border-so-how-can-i-solve-this/
More-reliable email in WordPress 6.9
Great, thank you for the quick response!
thanks for the update @wpmudevsupport11
Thank you @paddyam, that worked perfectly! I appreciate the great support.
Forum: Plugins
In reply to: [Contact Form 7] Schema Woven Validation Email rule for regex patternOK, great, thank you!
Thank you for the workaround! – I will give this a try. Although, I did find a plugin that handles this use case specifically “NS Cloner – Site Copier”.Fixed it by renaming the plugin folder, instead of wp-migrate-db-pro-tweaks, renamed to migration-tweaks.
Forum: Plugins
In reply to: [SQLite Object Cache] Compatibility with SQLite Database Integration plugin?Thanks, very helpful, I will test out and run some benchmarks.
Thank you for the fix!
Thank you for the fix!
Forum: Plugins
In reply to: [Contact Form 7] get_locale() and translation functions __() not working@takayukister found the issue!, looks like CF7 stores the locale in post_meta and it had the incorrect locale, maybe since I updated from a very old version of Cf7 or it was just never set correctly.
Here’s what I found in the DB:INSERT INTO wp_postmeta (post_id,meta_key,meta_value) VALUES (89765,'_locale','en_CA');//Fix CF7 locale, set manually to desired locale, remove this line once set.
update_post_meta( 89765, '_locale', 'fr_CA' );Forum: Plugins
In reply to: [WP Popular Posts] PHP Warning errors in logFound the issue! – when I disable this filter, the error goes away, it seems null is being passed from this function when no views found
function my_custom_no_posts_found( $no_data_html ) {
//$output = '<style type="text/css">.popular-posts { display:none; }</style>';
$output = '';
return $output;
}
add_filter( 'wpp_no_data', 'my_custom_no_posts_found', 10, 1 );I think I will just set .wpp-no-data as display none, to get the desired output.
Phew, thank you for your time on this, very much appreciated!
- This reply was modified 1 year, 8 months ago by Lukasz.