bsteinlo
Forum Replies Created
-
Forum: Plugins
In reply to: [Greenhouse Job Board] Intermittent 502 errors@brownbagmarketing any additional thoughts on this, I keep getting 502 errors. Not seeing anything from Greenhouse API but something is funky is going on and causin this. Let me know if you think above error handling might work?
Thanks @mazedulislamkhan. The link to the guide was exactly what I needed!
I adjusted the function to include
global $wpseo_sitemaps; $date = $wpseo_sitemaps->get_last_modified('post');and then use that for
<lastmod>' . htmlspecialchars( $date ) . '</lastmod>Forum: Plugins
In reply to: [Greenhouse Job Board] Intermittent 502 errorsNot sure if this would handle the errors, but what about something like
$response = wp_remote_get('https://api.greenhouse.io/v1/boards/' . $atts['url_token'] . '/embed/jobs?content=true'); // Check for error if ( is_wp_error( $response ) ) { //do something return; } $ghjb_json = wp_remote_retrieve_body( $response ); // Check for error if ( is_wp_error( $ghjb_json ) ) { //do something return; }- This reply was modified 8 years, 6 months ago by bsteinlo.
Forum: Plugins
In reply to: [Greenhouse Job Board] Intermittent 502 errorsHey @brownbagmarketing, thanks for letting me know. I am wondering if it’s the greenhouse API as well. Am wondering if there’s a possibility of adding better error handling so any bad response (like 500 errors) display a message letting users know the board is down. Thoughts?
Forum: Plugins
In reply to: [Disable REST API] Restrict plug-in use of REST API@dmchale thank you so much! Wondering what API endpoints everyone is whitelisting to get CF7 to work properly. Thanks!
Forum: Plugins
In reply to: [Disable REST API] Restrict plug-in use of REST APIAwesome, thank you @dmchale!
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 (Version 4.8) – Sending does not work+1 to this!
Forum: Plugins
In reply to: [Greenhouse Job Board] google captcha integration with green house job boardWould love this as well!
Forum: Plugins
In reply to: [Contact Form 7] REST API SECURITY ISSUES+1 on this, this seems to be a known issue that many people are having problems with.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 (Version 4.8) – Sending does not work@ramnic you can download previous version here: https://ww.wp.xz.cn/plugins/contact-form-7/advanced/
Just scroll down and select the version you want, in this case 4.7 should do it.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 (Version 4.8) – Sending does not workAh, that makes a lot of sense. I do in fact disable anonymous REST API access for security reasons. So, I suppose it’s not a ‘bug’ however this should be considered with a CF7 4.8 update, as a lot of people have anonymous REST API access disabled for security reasons.
Forum: Plugins
In reply to: [Contact Form 7] Manually submit form with jquery post in 4.8Try rolling back to CF7 4.7, seems to be a REST API bug in the newest version, hope this helps!
Forum: Plugins
In reply to: [Contact Form 7] CF7 / Bootstrap for CF7 conflictTry disabling
/wp-includes/js/jquery/jquery.form.min.js?ver=3.37.0I think you can try something like
add_filter( 'wpcf7_load_js', '__return_false' );Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 (Version 4.8) – Sending does not workTry rolling back to CF7 4.7, seems to be a REST API bug in the newest version, hope this helps!
Forum: Plugins
In reply to: [Contact Form 7] Submit suddenly stopped workingTry rolling back to CF7 4.7, seems to be a REST API bug in the newest version, hope this helps!