• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » WordPress HTTPS and Feedburner : Easy Solution

By Abhishek Ghosh September 1, 2014 12:09 pm Updated on September 1, 2014

WordPress HTTPS and Feedburner : Easy Solution

Advertisement

Converting the whole site to HTTPS create a basic problem, as Feedburner does not support HTTPS, it throws error. Here is an easy solution. You need not to fight with Nginx, Apache2 ‘s hundreds of difficult codes to pass only the feed URL to HTTP. More complex logics we will add, it can open up more trouble on the main server. All of us have one dot com and usually the corresponding dot net or dot org domain. We keep it as 301 redirected to the main website. Most of us have a B Grade host account – usually it is a Hostgator Shared Account. Quite obviously, not all website needs high end servers. Simple affiliate websites, project websites can work better on low cost $5 per month hosting. Converting the Feedburner subscribers to Feedblitz or whatever has extra charge. Why pay money to Feedblitz like service when we can use a simple method.

 

WordPress HTTPS and Feedburner : Easy Solution

 

Basically, we will copy the source code of the WordPress generated feed from HTTPS URL of main website, in our case it is :

Vim
1
https://thecustomizewindows.com/feed/

and create a file named feed.xml and save it. Against our that 301 redirected domain (it is thecustomizewindows.net in our case), we will change the name servers to point towards Hostgator’s Shared Account (if not already this is done). We will add thecustomizewindows.net as add-on domain via Hostgator’s cPanel. We have a webfoot now. We will upload the feed.xml file to thecustomizewindows.net‘s public FTP root. So, this is available now :

Advertisement

---

Vim
1
http://thecustomizewindows.net/feed.xml

Does not matter whether you have a corresponding HTTPS url or not, we will continue to use the Feedburner url by login to Feedburner and changing the Feed source from :

Vim
1
2
http:// thecustomizewindows.com/feed/
# wordpress default

to :

Vim
1
http://thecustomizewindows.net/feed.xml

It fixes everything but the method demands manual deletion of the xml file and again copying the latest, pasting it. You can automate it using PHP (that should be a separate tutorial), but actually if you use the SSH feature of Hostgator, from command line it can not take a huge time :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
curl https://thecustomizewindows.com/feed/ > feed.xml
# your computer, open the feed with nano
nano feed.xml
# copy all content after highlighting all text
ssh -p 2222 tcwmedia@140.258.189.20
# shared server
rm -r feed.xml
# create new
nano feed.xml
# paste your new, hit ^ +  O to save
# done
exit

Alternatively you can use the cPanel’s web interface, quite boring work!

WordPress-HTTPS-and-Feedburner-404

 

WordPress HTTPS and Feedburner : Easy Solution Has Fun With .htaccess

 

OK, we need to do 301 redirection from thecustomizewindows.net from all except the thecustomizewindows.net/feed.xml url, its quite easy, create a .htaccess file at FTP root of thecustomizewindows.net and write kind of this :

Vim
1
2
3
4
RewriteEngine On
Rewritecond %{http_host} ^thecustomizewindows\.net [NC]
RewriteCond %{REQUEST_URI} !/(feed)\.xml [NC]
Rewriterule ^(.*)$ https://thecustomizewindows.com/$1 [L,R=301]

Do not forget to change your domain name. Easy solution, not it? Automate it! You know about bash script or use cron! Commands are written => curl, overwrite. Just you need to set it on 15 minutes check for any change. If it was a VPS or cloud server we could use other sophisticated method.

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to WordPress HTTPS and Feedburner : Easy Solution

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • How to configure Feedburner so that it does not affect your SEO?

    Feedburner is very useful for a publisher of blogs since the free service lets you know how many people subscribe to RSS. Many content management tools used to disseminate an RSS feed, however none of them can get statistics on subscribers.

  • WordPress & PHP : Different AdSense Units on Mobile Devices

    Here is How To Serve Different AdSense Units on Mobile Devices on WordPress With PHP. WordPress Has Function Which Can Be Used In Free Way.

  • WordPress Feed and FeedBurner Feed : What is appropriate for you

    WordPress Feed and FeedBurner Feed has obvious simillarity and some points to distinguish them. It is not that, FeedBurner is free, so let us use it. There are reasons to give preference one over the another.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy