Merlin Back Bigger Than Ever

Merlin IBM Nefinity 5000Merlin is a Domino server running at StudioPlex that routes e-mail and hosts a few website. It has been plagued with hardware and virus problems. Over the holidays I rebuilt it. Merlin is now on an IBM Netfinity 5000 full-height rack mount, and it is the biggest tank of a computer I’ve had to pick up.

In the attached photo, the Netfinity is propped up sideways on my workbench. That’s an Apple flat panel display on top. The CD drive is tray loaded, so that’s why it is standing on its side. There are dual power supplies and cooling systems. (Danny noticed it is really noisy.) There are four hot-swappable hard disks. Ted was impressed this is a vintage 1999 machine. Merlin should be worth years more of service.

Now playing: Big Generator by Yes

Continue reading

Ecto iTunes Template xtra 25s

The attached snapshot shows why this link does not work properly when created in Rich Text mode in Ecto:

Hand In Hand from the album “Face Value” by Phil Collins

Notice the extra “25” inserted in rich text mode. This causes the link to not work correctly.

Ecto Itunes Template-1

I corrected by using pairs of single apostrophes ‘ instead of the %22 pairs in the iTunes template. This next insert uses that the single apostrophe format:

Now playing: Flyin’ Shoes by Lyle Lovett

AWStats Installed

Guided again by Scot, I installed AWStats for web traffic analysis. I already like it better than Analog (see comparison) because I got it installed quicker and because it is easier to run/access from the web.

Click on the little “AWStats” button at the bottom of mac.fiveforks.com to see stats.

AWStats Web Traffic Analysis

The install log is attached with comments for future reference. Had a few hiccups that were cured with setting the config file, permissions, and creating a couple of directories.

Continue reading

Ecto and XML Parsing Error

I purchased Ecto (formerly Kung Log) to make posting easier. It is kind of like Microsoft Word for blogging. You can bold and color text and even change the background color of text.

It didn’t work at first because an XML Parser was missing: /mt/extlib/XML/Parser/Lite.pm. I had just upgraded MovableType to version 3.14 from 2.6 and the new extlib did not contain this folder and file. I moved it from a back up copy and it worked. I got lucky to decipher this messy Server Error message, especially given Ecto 2 and MT 3.14 are so new there is nothing out there on Google about this:

Method metaWeblog.getRecentPosts produced a server error:

Application failed during request deserialization:

XML::Parser is not available and

Can’t locate XML/Parser/Lite.pm in @INC (@INC contains:

/Library/WebServer/Documents/mt/extlib –

/Library/WebServer/Documents/mt/lib –

/System/Library/Perl/5.8.1/darwin-thread-multi2level –

/System/Library/Perl/5.8.1 –

/Library/Perl/5.8.1/darwin-thread-multi-2level –

/Library/Perl/5.8.1 /Library/Perl –

/Network/Library/Perl/5.8.1/darwin-thread-multi-2level –

/Network/Library/Perl/5.8.1 /Network/Library/Perl . –

at /Library/WebServer/Documents/mt/extlib/SOAP/Lite.pm –

line 1228.

Now playing: That’s Right (You’re Not From Texas) by Lyle Lovett

MovableType Upgraded To 3.14

The MovableType system has been upgraded to version 3.14. Things will look different when you log in. Most of the changes were “under the hood” improvements that make the system perform better and more secure. Two features I’ll be exploring right away are sub-categories (you can double categorize posts) and scheduling (you can have something post in the future.)

Read more here: www.movabletype.org/docs/mt30.html.

And here: www.movabletype.org/docs/mt31.html.

Now playing: Falling In Love by Randy Newman

All Entries Template

On the occasion of his 100th blog posting, Ted wondered if he could create an all entries view. Scot Hacker has an All Posts Ever view, so I knew it was possible.

I went under templates and made a new Index Template (not archive template) called “All Entries.” I made the output file = all.html.

I then chopped up a copy of the Main Index templates to get down to the minimal code needed to create the all.html file. You can copy/paste the code below to make your own all.html template like mine.

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

<html xmlns=”http://www.w3.org/1999/xhtml”>

<head>

<meta http-equiv=”Content-Type” content=”text/html; charset=<$MTPublishCharset$>” />

<title><$MTBlogName$>: All Entries</title>

<link rel=”stylesheet” href=”<$MTBlogURL$>styles-site.css” type=”text/css” />

<link rel=”alternate” type=”application/rss+xml” title=”RSS” href=”<$MTBlogURL$>index.rdf” />

</head>

<body>

<div id=”banner”>

<a href=”<$MTBlogURL$>” accesskey=”1″><$MTBlogName$>: All Entries</a>

</div>

<div class=”description”><$MTBlogDescription$></div>

<div id=”container”>

<div class=”blog”>

<MTEntries lastn=”1000000″>

<span class=”title”>

<a href=”<$MTEntryPermalink$>”><$MTEntryTitle$> </a></span> <span class=”posted”><$MTEntryDate format=”%x”$></span><br />

</MTEntries>

</div>

</div>

</body>

</html>

To give quick access to the file, I added an “All Entries” link at the top of the archives division in the Main Index:

<div class=”sidetitle”>

Archives

</div>

<div class=”side”>

<a href=”all.html”>All Entries</a><br />

<MTArchiveList archive_type=”Monthly”>

<a href=”<$MTArchiveLink$>”><$MTArchiveTitle$></a><br />

</MTArchiveList>

</div>

Now playing: Keep on Rocking in the Free World by Pearl Jam