Admin
Richie & You, Author & Consultant (pearlsforthesoul.com)

Answers

Staff
359,506
ActiveRain Member Support
Seattle, WA

Richie, 
My Home
My Blog
Export Blog Entries

You'll get a zipped download xml file.
It's not a complete pop open and everything will look just like it does on your blog, but more of a "here's all the words in your posts".

Jun 01, 2026 08:47 PM
Ambassador
6,056,952
Debe Maxwell, CRS
Savvy + Company (704) 491-3310 - Charlotte, NC
The RIGHT CHARLOTTE REALTOR!

Richie, I feel like our buddy, Brad Andersohn is who taught us to do that several years ago but, I don't remember. Perhaps Brad will be able to share the instructions here. In the meantime, I'll be searching for you.

Jun 01, 2026 08:39 PM
Rainmaker
6,090,666
Wayne Martin
Wayne M Martin - Oswego, IL
Real Estate Broker - Retired

This techie deficient member will be parked and reading but can offer absolutely no assistance. Good luck!

Jun 02, 2026 04:14 AM
Rainmaker
1,750,490
Thomas J. Nelson, REALTOR ® CRS,ABR,PSA,RCS-D, CFSP
Big Block LPT Realty 858.232.8722 - San Diego, CA
Coastal San Diego, Veteran's & Retirees Services

Brad Andersohn 

But what to do with it if we're not putting it Wordpress, but just want clean text backups of all our posts? What other than Wordpress opens it? It's just a 20 page long list of that data format? 

I'm getting a Zip file with a Microsoft Edge HTML Doc inside with this data gibberish:

This XML file does not appear to have any style information associated with it. The document tree is shown below.

 

<blog-entry type="BlogEntry">
<BlogEntry:0x00007fceb8c96b28></blog-entry>

 

<blog-entry type="BlogEntry">#<BlogEntry:0x00007fceb8c96a38></blog-entry>

 

<blog-entry type="BlogEntry">#<BlogEntry:0x00007fceb8c96948></blog-entry>

 

<blog-entry type="BlogEntry">#<BlogEntry:0x00007fceb8c96858></blog-entry>

 

<blog-entry type="BlogEntry">#<BlogEntry:0x00007fceb8c96768></blog-entry>

But now what?
Jun 02, 2026 01:19 PM
Ambassador
3,618,026
Kathleen Daniels, Probate & Trust Real Estate Svcs.
KD Realty - 408.972.1822 - San Jose, CA
Probate Real Estate Services

These are the kinds of afterthoughts we have after posting on third-party sites we have no control over. Best practice is to save all posts on your hard drives, either in HTML format, Word format, or in Notepad for future use. 

I am curious Richie & You - why do you ask this ... now, after all these years?

Jun 02, 2026 08:57 AM
Ambassador
835,707
Brad Andersohn
Retired Executive Director of Education at eXp - Boulder Creek, CA
ActiveBrad - 707.646.1876

Hey All - here is what I found so far... 

AR was built on "Ruby on Rails" platform many decades ago, and after downloading (exporting) my own blog just now, and NOT using wordpress to import it, I found the following:

Here's what's going on with your file:

File type: It's a .gz (gzip-compressed) file containing XML. The .gz extension means it's a single file compressed with gzip — not a zip archive.

How to open it:

The simplest way on a Mac/Linux terminal is:

gunzip -c blog_entries_xml.gz | less
# or
zcat blog_entries_xml.gz | head -50

On Windows, you can use 7-Zip to decompress it, or tools like Python.

In Python:

import gzip

with gzip.open("blog_entries_xml.gz", "rt", encoding="utf-8") as f:
    content = f.read()
print(content[:1000])

 

What's in it — and a heads-up: The file contains XML with a list of <blog-entry> elements, but unfortunately the data inside each entry is broken. Every entry looks like this:

<blog-entry type="BlogEntry">#&lt;BlogEntry:0x00007f0c9c3e14f8&gt;</blog-entry>

That #<BlogEntry:0x00007f0c9c3e14f8> is a Ruby object memory address — it's what you get when a Ruby object is serialized to XML without properly implementing a to_xml method.

In plain terms, the actual blog post content (title, body, date, etc.) was never serialized — only a placeholder pointing to where the object lived in memory.

PROBLEM:

 

This means the file doesn't contain recoverable blog post data. It looks like it was exported from a Ruby on Rails app with a bug in the XML serialization.

SOLUTION:
To get the real data, you'd need to re-export it from the original database/application with the serialization fixed.

Jun 03, 2026 08:47 AM
Ambassador
6,664,568
Kathy Streib
Cypress, TX
Retired Home Stager/Redesign

Thanks for asking the question, Richie. I'm scrolling through the answers and will give it a try. 

Jun 02, 2026 10:11 AM
Ambassador
4,196,751
Margaret Rome Baltimore 410-530-2400
HomeRome Realty 410-530-2400 - Pikesville, MD
Sell Your Home With Margaret Rome

I went to the archives and loaded each of my twenty years as a PDF. So i have all of my blogs linked to easily find them. Not sure the links would work IF there was no more AR.  Is this what you are looking for Richie & You ? or Brad Andersohn 

Jun 04, 2026 07:33 AM
Ambassador
7,331,066
Bob Crane
Woodland Management Service / Woodland Real Estate, KW Diversified - Stevens Point, WI
Forestland Experts! 715-204-9671

There is a button for this, I suspect the results will not be as pretty as we would like.

I believe that it was designed a few decades ago so that people could migrate their blog to wordpress.

Jun 02, 2026 07:52 PM