get feedburner feed on httpS












6















We are grabbing our feed at feedburner by using the jquery jGFeed plugin.
this works great until the moment our users are on a httpS:// page.



When we try to load the feed on that page the user gets the message that there is mixed conteent, protected and unprotected on the page.



A solution would be to load the feed on https, but google doesn't allow that, the certificate isn't working.



$.jGFeed('httpS://feeds.feedburner.com/xxx')


Does anyone know a workaround for this. The way it functions now, we simply cannot server the feed in our pages when on httpS










share|improve this question



























    6















    We are grabbing our feed at feedburner by using the jquery jGFeed plugin.
    this works great until the moment our users are on a httpS:// page.



    When we try to load the feed on that page the user gets the message that there is mixed conteent, protected and unprotected on the page.



    A solution would be to load the feed on https, but google doesn't allow that, the certificate isn't working.



    $.jGFeed('httpS://feeds.feedburner.com/xxx')


    Does anyone know a workaround for this. The way it functions now, we simply cannot server the feed in our pages when on httpS










    share|improve this question

























      6












      6








      6








      We are grabbing our feed at feedburner by using the jquery jGFeed plugin.
      this works great until the moment our users are on a httpS:// page.



      When we try to load the feed on that page the user gets the message that there is mixed conteent, protected and unprotected on the page.



      A solution would be to load the feed on https, but google doesn't allow that, the certificate isn't working.



      $.jGFeed('httpS://feeds.feedburner.com/xxx')


      Does anyone know a workaround for this. The way it functions now, we simply cannot server the feed in our pages when on httpS










      share|improve this question














      We are grabbing our feed at feedburner by using the jquery jGFeed plugin.
      this works great until the moment our users are on a httpS:// page.



      When we try to load the feed on that page the user gets the message that there is mixed conteent, protected and unprotected on the page.



      A solution would be to load the feed on https, but google doesn't allow that, the certificate isn't working.



      $.jGFeed('httpS://feeds.feedburner.com/xxx')


      Does anyone know a workaround for this. The way it functions now, we simply cannot server the feed in our pages when on httpS







      https feedburner






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 23 '10 at 21:07









      JorreJorre

      7,3022479126




      7,3022479126
























          3 Answers
          3






          active

          oldest

          votes


















          1














          At this time Feedburner does not offer feeds over SSL (https scheme). The message that you're getting regarding mixed content is by design; in fact, any and all content that is not being loaded from a secured connection will trigger that message, so making sure that all content is loaded over SSL is really your only alternative to avoid that popup.



          As I mentioned, Feedburner doesn't offer feeds over SSL, so realistically you'll need to look into porting your feed to another service that DOES offer feeds over SSL. Keep in mind what I said above, however, with respect to your feed's content as well. If you have any embedded content that is not delivered via SSL then that content will also trigger the popup that you're trying to avoid.






          share|improve this answer































            1














            This comes up from time to time with other services that don't have an SSL cert (Twitter's API is a bit of a mess that way too.) Brian's comment is correct about the nature of the message, so you've got a few options:




            1. If this is on your server, and the core data is on your server too, then you've got end to end SSL capabilities; just point jGFeed to the local RSS feed that FeedBurner's already importing.

            2. Code up a proxy on your server to marshall the call to Feedburner and return the response over SSL.

            3. Find another feed service that supports SSL, and either pass it the original feed or the Feedburner one.






            share|improve this answer































              -2














              i have started using WordPress paid theme Schema for my several blogs. In general, it is a nice theme, fast and SEO friendly. However, since my blogs are all on HTTPS, then I noticed that if I had a widget of (Google Feedburner) in the sitebar. The chrome will show a security error for any secure page with an insecure form call on the page.



              To fix this, it is really simple,



              you would just need to change the file widget-subscribe.php located at /wp-content/themes/schema/functions/ and replace all “http://feedburner.google.com” to “https://feedburner.google.com”.



              Save the file, and clear the cache, then your browser will show a green padlock.



              and i fix this in my this blog www.androidloud.com






              share|improve this answer























                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f4006067%2fget-feedburner-feed-on-https%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                1














                At this time Feedburner does not offer feeds over SSL (https scheme). The message that you're getting regarding mixed content is by design; in fact, any and all content that is not being loaded from a secured connection will trigger that message, so making sure that all content is loaded over SSL is really your only alternative to avoid that popup.



                As I mentioned, Feedburner doesn't offer feeds over SSL, so realistically you'll need to look into porting your feed to another service that DOES offer feeds over SSL. Keep in mind what I said above, however, with respect to your feed's content as well. If you have any embedded content that is not delivered via SSL then that content will also trigger the popup that you're trying to avoid.






                share|improve this answer




























                  1














                  At this time Feedburner does not offer feeds over SSL (https scheme). The message that you're getting regarding mixed content is by design; in fact, any and all content that is not being loaded from a secured connection will trigger that message, so making sure that all content is loaded over SSL is really your only alternative to avoid that popup.



                  As I mentioned, Feedburner doesn't offer feeds over SSL, so realistically you'll need to look into porting your feed to another service that DOES offer feeds over SSL. Keep in mind what I said above, however, with respect to your feed's content as well. If you have any embedded content that is not delivered via SSL then that content will also trigger the popup that you're trying to avoid.






                  share|improve this answer


























                    1












                    1








                    1







                    At this time Feedburner does not offer feeds over SSL (https scheme). The message that you're getting regarding mixed content is by design; in fact, any and all content that is not being loaded from a secured connection will trigger that message, so making sure that all content is loaded over SSL is really your only alternative to avoid that popup.



                    As I mentioned, Feedburner doesn't offer feeds over SSL, so realistically you'll need to look into porting your feed to another service that DOES offer feeds over SSL. Keep in mind what I said above, however, with respect to your feed's content as well. If you have any embedded content that is not delivered via SSL then that content will also trigger the popup that you're trying to avoid.






                    share|improve this answer













                    At this time Feedburner does not offer feeds over SSL (https scheme). The message that you're getting regarding mixed content is by design; in fact, any and all content that is not being loaded from a secured connection will trigger that message, so making sure that all content is loaded over SSL is really your only alternative to avoid that popup.



                    As I mentioned, Feedburner doesn't offer feeds over SSL, so realistically you'll need to look into porting your feed to another service that DOES offer feeds over SSL. Keep in mind what I said above, however, with respect to your feed's content as well. If you have any embedded content that is not delivered via SSL then that content will also trigger the popup that you're trying to avoid.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 10 '11 at 13:21









                    Brian DriscollBrian Driscoll

                    16.4k23856




                    16.4k23856

























                        1














                        This comes up from time to time with other services that don't have an SSL cert (Twitter's API is a bit of a mess that way too.) Brian's comment is correct about the nature of the message, so you've got a few options:




                        1. If this is on your server, and the core data is on your server too, then you've got end to end SSL capabilities; just point jGFeed to the local RSS feed that FeedBurner's already importing.

                        2. Code up a proxy on your server to marshall the call to Feedburner and return the response over SSL.

                        3. Find another feed service that supports SSL, and either pass it the original feed or the Feedburner one.






                        share|improve this answer




























                          1














                          This comes up from time to time with other services that don't have an SSL cert (Twitter's API is a bit of a mess that way too.) Brian's comment is correct about the nature of the message, so you've got a few options:




                          1. If this is on your server, and the core data is on your server too, then you've got end to end SSL capabilities; just point jGFeed to the local RSS feed that FeedBurner's already importing.

                          2. Code up a proxy on your server to marshall the call to Feedburner and return the response over SSL.

                          3. Find another feed service that supports SSL, and either pass it the original feed or the Feedburner one.






                          share|improve this answer


























                            1












                            1








                            1







                            This comes up from time to time with other services that don't have an SSL cert (Twitter's API is a bit of a mess that way too.) Brian's comment is correct about the nature of the message, so you've got a few options:




                            1. If this is on your server, and the core data is on your server too, then you've got end to end SSL capabilities; just point jGFeed to the local RSS feed that FeedBurner's already importing.

                            2. Code up a proxy on your server to marshall the call to Feedburner and return the response over SSL.

                            3. Find another feed service that supports SSL, and either pass it the original feed or the Feedburner one.






                            share|improve this answer













                            This comes up from time to time with other services that don't have an SSL cert (Twitter's API is a bit of a mess that way too.) Brian's comment is correct about the nature of the message, so you've got a few options:




                            1. If this is on your server, and the core data is on your server too, then you've got end to end SSL capabilities; just point jGFeed to the local RSS feed that FeedBurner's already importing.

                            2. Code up a proxy on your server to marshall the call to Feedburner and return the response over SSL.

                            3. Find another feed service that supports SSL, and either pass it the original feed or the Feedburner one.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered May 30 '11 at 13:37









                            jasondoucettejasondoucette

                            901819




                            901819























                                -2














                                i have started using WordPress paid theme Schema for my several blogs. In general, it is a nice theme, fast and SEO friendly. However, since my blogs are all on HTTPS, then I noticed that if I had a widget of (Google Feedburner) in the sitebar. The chrome will show a security error for any secure page with an insecure form call on the page.



                                To fix this, it is really simple,



                                you would just need to change the file widget-subscribe.php located at /wp-content/themes/schema/functions/ and replace all “http://feedburner.google.com” to “https://feedburner.google.com”.



                                Save the file, and clear the cache, then your browser will show a green padlock.



                                and i fix this in my this blog www.androidloud.com






                                share|improve this answer




























                                  -2














                                  i have started using WordPress paid theme Schema for my several blogs. In general, it is a nice theme, fast and SEO friendly. However, since my blogs are all on HTTPS, then I noticed that if I had a widget of (Google Feedburner) in the sitebar. The chrome will show a security error for any secure page with an insecure form call on the page.



                                  To fix this, it is really simple,



                                  you would just need to change the file widget-subscribe.php located at /wp-content/themes/schema/functions/ and replace all “http://feedburner.google.com” to “https://feedburner.google.com”.



                                  Save the file, and clear the cache, then your browser will show a green padlock.



                                  and i fix this in my this blog www.androidloud.com






                                  share|improve this answer


























                                    -2












                                    -2








                                    -2







                                    i have started using WordPress paid theme Schema for my several blogs. In general, it is a nice theme, fast and SEO friendly. However, since my blogs are all on HTTPS, then I noticed that if I had a widget of (Google Feedburner) in the sitebar. The chrome will show a security error for any secure page with an insecure form call on the page.



                                    To fix this, it is really simple,



                                    you would just need to change the file widget-subscribe.php located at /wp-content/themes/schema/functions/ and replace all “http://feedburner.google.com” to “https://feedburner.google.com”.



                                    Save the file, and clear the cache, then your browser will show a green padlock.



                                    and i fix this in my this blog www.androidloud.com






                                    share|improve this answer













                                    i have started using WordPress paid theme Schema for my several blogs. In general, it is a nice theme, fast and SEO friendly. However, since my blogs are all on HTTPS, then I noticed that if I had a widget of (Google Feedburner) in the sitebar. The chrome will show a security error for any secure page with an insecure form call on the page.



                                    To fix this, it is really simple,



                                    you would just need to change the file widget-subscribe.php located at /wp-content/themes/schema/functions/ and replace all “http://feedburner.google.com” to “https://feedburner.google.com”.



                                    Save the file, and clear the cache, then your browser will show a green padlock.



                                    and i fix this in my this blog www.androidloud.com







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Mar 30 '16 at 18:22









                                    apkmovies.comapkmovies.com

                                    1




                                    1






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f4006067%2fget-feedburner-feed-on-https%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        MongoDB - Not Authorized To Execute Command

                                        How to fix TextFormField cause rebuild widget in Flutter

                                        in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith