Skip to content

How to Save and Archive Your Geocities Account (with jQuery + Firebug)

1 min read

Back in the late 1990s, Geocities was all the rage and free 2MB of space for hosting your website rocked. It was in 1997 that I first put my own websites online and Geocities made it very easy to host.

Fast-forward 12 years and the doors are closing. Geocities has offered some help & tips but for the most part these are lacking on how to easily download and save all of your files (that is if you’re on the FREE account). You really want me to “Save page as” with my browser? I’ll lose all the meta info with my files and what about all of those images or files I stored? No way to easily navigate to those, especially when there are 100s of files.

Well here’s a handy trick to get this working.

Grab this bookmarket: jQuerify and drag it to your bookmarks. This is an updated version of John Resig’s jQueryify bookmarklet, changing the source URL of jQuery to match the one listed on jquery.com.

Visit your Geocities account and the filemanager page. Once on a listing of files, click on the above bookmarklet, then use Firebug to execute the following code:

var o = '';
$("form[name=dispfiles]")
  .find("a:contains(View)")
  .each(function(i, val) {
    o+= 'wget '+ val.href +';';
  });
console.log(o);

This will output to your Firebug console a “wget” command of all the files. Simply open up terminal in Linux/Mac (Windows try Cygwin) and copy and run the command.

Voila! All your files downloaded. And all of the meta information (like created date) are captured too. Wow files from March 1997 – are those antiques yet?? :)

The one caveat is you have to manually create your folders. Other than that, this works well and in a few minutes I had a backup of hundreds of files. Sure it’s the not cleanest hack, but it worked well for a few minutes of work :)

code

Related Posts

MothersClick Acquired by Lifetime Networks

MothersClick.com [http://www.mothersclick.com/] and the rest of the ParentsClick Network [http://www.parentsclick.com/]have been acquired by Lifetime Entertainment [http://www.marketwatch.com/news/story/l/story.aspx?guid=%7B764B126C-2071-4605-8222-7FA1E481B0EE%7D] . I’ve been working on this site and with Dietrich (CEO & founder) for over 2

news — 5 min read

Leo talks about the new TWiT.tv site

At the end of last week’s TWiT episode [http://www.twit.tv/62], Leo and company talk about the new TWiT.tv site [https://tedserbinski.com/drupal/twit-tv/]. A clip of that can be listened to below. Also last week on the Lullabot podcast [http://www.lullabot.com/podcast]

code — 1 min read

My first 15 min of fame!

A few weeks back, Leo Laporte [http://en.wikipedia.org/wiki/Leo_Laporte] approached Lullabot [http://www.lullabot.com/] about developing the new TWiT website [http://www.twit.tv/]. Well we gladly accepted, I mean, this is Leo! So I was put in charge of developing the new site, and

code — 1 min read