SSL Feedburner
-
Hi guys,
I have problem with Feedburner as it doesn’t work at all (even after following this guide: https://www.ads-software.com/support/topic/fully-ssl-enabled-site-ok-wexception-of-feedburner)
What I have are:
– Cloudflare Pro
– Working SSL
– Settings of this plugin are all defaultI copied this into my functions.php:
function http_feed( $url ) {
return str_replace(‘https://’, ‘https://’, $url);
}add_filter(‘feed_link’, ‘http_feed’, 10);
function http_feed_force_ssl( $force_ssl, $post_id = 0, $url = ” ) {
if ( strpos($url, ‘/feed/’) !== false ) {
$force_ssl = false;
}
return $force_ssl;
}add_filter(‘force_ssl’, ‘http_feed_force_ssl’, 10, 3);
Error I get: Received HTTP error code 400 while fetching source feed.
Original feed: https://www.smartinternetlifestyle.com/feed/
Feedburner: https://feeds.feedburner.com/smartinternetlifestyleblog
Website: https://www.smartinternetlifestyle.comI’m so out of idea now. How can I solve this problem?
- The topic ‘SSL Feedburner’ is closed to new replies.