Back to How to set up a blog

Simplified Movable Type Installation Instructions

The process of installing Movable Type is really quite simple - below is a step-by-step guide to complete installation in 8 steps.

With all due respect to our friends at MT, the official Installation Instructions will make you think it's quite complicated - like having to cross a field of chest-high weeds to get across the street. This document is intended for first-timers who have some background working with Linux.

Comments? Questions? Corrections? Please send us feedback.

These instructions assume:

1. Download full version - e.g. MT-3[1].01D.tar.gz

2. Set up directory structure on web server as follows:



public_html is where your index.html (or index.php) is located
cgi-bin is where executables run from, including cgi scripts
mt-static is for static mt stuff, including custom templates
blogname is the name of your blog. For example, if your site is www.domain.com, your blogs will be in www.domain.com/blogname.
archives is a subdirectory of blogname and is for blog archives

Note: Some hosting providers only allow executables to be run from cgi-bin under suexec.

3. Unzip/untar and copy (or ftp) everything (about 5.3Mb) to cgi-bin ...
EXCEPT images, docs, mt.js, and styles.css, which go in mt-static.

Notes:
If you are ftping, be sure to upload everything in ASCII mode EXCEPT images, which should be uploaded in binary mode.
Make sure all scripts (including those in /extlib/*) have 755 permissions!
See: Listing of files and directories in cgi-bin after installation

4. Edit mt.cfg.

There's a lot of stuff to understand here. The following is an example mt.cfg that will get you going, but spend some time reading the comments in this file and do some research to figure out what each directive does and whether or not you need it.
CGIPath http://bubba/cgi-bin/
ObjectDriver DBI::mysql
Database mt301
DBUser mtbloger
DBHost localhost
ThrottleSeconds 20
# EmailAddressMain YOUR.OTHER.ADDRESS@SOMEDOMAIN.COM
StaticWebPath /mt-static/
TemplatePath ./tmpl
# SendMailPath /usr/sbin/sendmail
# MailTransfer smtp
# SMTPServer smtp.your-site.com
# NoTempFiles 1
# WeblogsPingURL http://some.alternate.weblogs.com.server/path/
# BlogsPingURL http://some.alternate.blo.gs.server/path/
# MTPingURL http://some.alternate.movabletype.org.server/path/
CGIMaxUpload 500000
DBUmask 0022
HTMLUmask 0022
UploadUmask 0022
DirUmask 0022
HTMLPerms 0777
UploadPerms 0777
TempDir /tmp/
EntriesPerRebuild 40
ImportPath ./import
# UseNFSSafeLocking 1
# NoLocking 1
PublishCharset utf-8
# PublishCharset Shift_JIS
# NoHTMLEntities 1
# NoCDATA 1
# PingTimeout 20
# PingInterface 192.168.10.5
# PingInterface 192.168.10.5:8080
# PingProxy http://192.168.10.5:3128
# PingNoProxy internal.lan, example.tld
# ImageDriver NetPBM
# NetPBMPath /home/foo/netpbm/bin
# AdminScript mt.pl
# CommentScript mt-comments.pl
# TrackbackScript mt-tb.pl
# SearchScript mt-search.pl
# XMLRPCScript mt-xmlrpc.pl
# ViewScript mt-view.pl
# SafeMode 0
# GlobalSanitizeSpec br/,p
# GenerateTrackBackRSS 0
# SearchTemplatePath ./search_templates/
# DefaultTemplate default.tmpl
AltTemplate comments comments.tmpl
# AltTemplate work work.tmpl
# AltTemplate play play.tmpl
# ExcludeBlogs 1,3,4
# IncludeBlogs 2
# RegexSearch 1
# CaseSearch 1
# SearchCutoff 7
# CommentSearchCutoff 7
# MaxResults 5
# ResultDisplay ascend
# ExcerptWords 100
# SearchElement both
# NoOverride IncludeBlogs,ExcludeBlogs
Note: A good trick here is to make a copy the original mt.cfg file with all the comments (cp mt.cfg mt.cfg.orig) and then purge the comments and include only the directives you need in the working mt.cfg. Note that bubba is a test server on my local network. Normally the CGIPath directive will look like this: http://www.domain.com/cgi-bin/

5. Edit mt-db-pass.cgi so your password is the only thing in the file.

boyjojo           (your password should replace the default "database-password")

6. Point your browser to http://www.your-site.com/cgi-bin/mt-check.cgi

The output of this script will appear in your browser window and tell you if you need to install any additional Perl modules.
See: Sample mt-check.cgi Output

7. If you need to install additional Perl modules, install them now (see instructions on MT web site).

Here are some additional perl modules that may be required, depending on your installation:
HTML::Template
DBD::mysql
Image::Size
LWP::UserAgent
File::Spec
SOAP::Lite
CGI::Cookie
File::Temp
DB_File
Image::Magick
See: Required/Optional Perl Module Installation Verification

8. Point your browser to http://www.your-site.com/cgi-bin/mt-load.cgi to run the initialization script.

Remember: mt-load.cgi (like other scripts) needs 755 permissions. (chmod 755 mt-load.cgi)

Installation is now complete.

Log into MT at http://www.your-site.com/cgi-bin/mt.cgi using Melody for username, and Nelson for password (change this after first login).
See: Sample mt-load.cgi Output

Listing of files and directories in cgi-bin after installation

bubba [/home/post/public_html/cgi-bin] # ls -hal
drwxrwxrwx    9 root     root         4.0K Aug 30 19:48 .
drwxrwxrwx   12 root     root         4.0K Aug 30 19:41 ..
drwxr-xr-x    2 root     root         4.0K Aug 30 19:00 docs              move to mt-static
-rw-r--r--    1 root     root           60 Aug 30 19:47 error.tmpl
drwxr-xr-x   24 root     root         4.0K Aug 30 19:47 extlib
drwxr-xr-x    2 root     root         4.0K Aug 30 19:00 images            move to mt-static
-rw-r--r--    1 root     root         1.1K Aug 30 19:47 index.html
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 lib
-rw-r--r--    1 root     root         8.8K Aug 30 19:47 LICENSE-COMMERCIAL
-rw-r--r--    1 root     root         9.2K Aug 30 19:47 LICENSE-PERSONAL
-rwxr-xr-x    1 root     root          724 Aug 30 19:47 mt-add-notify.cgi
-rwxr-xr-x    1 root     root          742 Aug 30 19:47 mt-atom.cgi
-rw-r--r--    1 root     root          19K Aug 30 19:47 mt.cfg
-rwxr-xr-x    1 root     root          744 Aug 30 19:47 mt.cgi
-rwxr-xr-x    1 root     root         8.1K Aug 30 19:47 mt-check.cgi
-rwxr-xr-x    1 root     root          777 Aug 30 19:47 mt-comments.cgi
-rwxr-xr-x    1 root     root           18 Aug 30 19:47 mt-db-pass.cgi
-rwxr-xr-x    1 root     root         4.5K Aug 30 19:47 mt.js              move to mt-static
-rwxr-xr-x    1 root     root         7.5K Aug 30 19:47 mt-load.cgi
-rwxr-xr-x    1 root     root          777 Aug 30 19:47 mt-search.cgi
-rwxr-xr-x    1 root     root         2.0K Aug 30 19:47 mt-send-entry.cgi
-rwxr-xr-x    1 root     root         1.1K Aug 30 19:47 mt-set-reg.cgi
-rwxr-xr-x    1 root     root          774 Aug 30 19:47 mt-tb.cgi
-rwxr-xr-x    1 root     root         1.1K Aug 30 19:47 mt-testbg.cgi
-rwxr-xr-x    1 root     root          759 Aug 30 19:47 mt-view.cgi
-rwxr-xr-x    1 root     root          814 Aug 30 19:47 mt-xmlrpc.cgi
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 schemas
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 search_templates
-rw-r--r--    1 root     root          15K Aug 30 19:00 styles.css          move to mt-static
drwxr-xr-x    4 root     root         4.0K Aug 30 19:47 tmpl
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 tools
bubba [/home/post/public_html/cgi-bin] #

Sample mt-check.cgi Output

Movable Type System Check [mt-check.cgi]

This page provides you with information on your system's configuration and determines whether you have all of the components you need to run Movable Type.

System Information:

Checking for Required Modules:

HTML::Template (version >= 2)

Your server has HTML::Template installed (version 2.4).

Image::Size

Your server has Image::Size installed (version 2.93).

File::Spec (version >= 0.8)

Your server has File::Spec installed (version 0.82).

CGI::Cookie

Your server has CGI::Cookie installed (version 1.20).

Checking for Data Storage Modules:

The following modules are used by the different data storage options in Movable Type. In order run the system, your server needs to have at least one of these modules installed.

DB_File

Your server has DB_File installed (version 1.806).

DBD::mysql

Your server has DBD::mysql installed (version 2.1021).

DBD::Pg

Your server has DBD::Pg installed (version 1.21).

DBD::SQLite

Your server does not have DBD::SQLite installed, or DBD::SQLite requires another module that is not installed. DBI and DBD::SQLite are required if you want to use the SQLite database backend. Please consult the installation instructions for help in installing DBD::SQLite.

Checking for Optional Modules:

The following modules are optional; If your server does not have these modules installed, you only need to install them if you require the functionality that the module provides.

HTML::Entities

Your server does not have HTML::Entities installed, or HTML::Entities requires another module that is not installed. HTML::Entities is needed to encode some characters, but this feature can be turned off using the NoHTMLEntities optioon in mt.cfg. Please consult the installation instructions for help in installing HTML::Entities.

LWP::UserAgent

Your server has LWP::UserAgent installed (version 2.001).

SOAP::Lite (version >= 0.5)

Your server has SOAP::Lite installed (version 0.52).

File::Temp

Your server has File::Temp installed (version 0.12).

Image::Magick

Your server does not have Image::Magick installed, or Image::Magick requires another module that is not installed. Image::Magick is optional; It is needed if you would like to be able to create thumbnails of uploaded images. Please consult the installation instructions for help in installing Image::Magick.

Storable

Your server has Storable installed (version 2.06).

Crypt::DSA

Your server does not have Crypt::DSA installed, or Crypt::DSA requires another module that is not installed. Crypt::DSA is optional; if it is installed, comment registration sign-ins will be accelerated. Please consult the installation instructions for help in installing Crypt::DSA.

MIME::Base64

Your server has MIME::Base64 installed (version 2.12).

XML::Atom

Your server does not have XML::Atom installed, or XML::Atom requires another module that is not installed. XML::Atom is required in order to use the Atom API. Please consult the installation instructions for help in installing XML::Atom.

Movable Type System Check Successful

You're ready to go! Your server has all of the required modules installed; you do not need to perform any additional module installations. Continue with the installation instructions.

Required/Optional Perl Module Installation Verification

bubba [/home/post/public_html/cgi-bin/extlib] # ls -lah

drwxr-xr-x   24 root     root         4.0K Aug 30 19:47 .
drwxrwxrwx    8 root     root         4.0K Aug 30 21:35 ..
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 Apache
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 Attribute
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 CGI
-rwxr-xr-x    1 root     root         205K Aug 30 19:47 CGI.pm
drwxr-xr-x    4 root     root         4.0K Aug 30 19:47 DateTime
-rwxr-xr-x    1 root     root          73K Aug 30 19:47 DateTime.pm
-rwxr-xr-x    1 root     root         1.4K Aug 30 19:47 DateTimePPExtra.pm
-rwxr-xr-x    1 root     root         4.7K Aug 30 19:47 DateTimePP.pm
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 File
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 HTML
drwxr-xr-x    4 root     root         4.0K Aug 30 19:47 HTTP
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 I18N
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 Image
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 IO
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 Locale
drwxr-xr-x    4 root     root         4.0K Aug 30 19:47 LWP
-rwxr-xr-x    1 root     root          19K Aug 30 19:47 LWP.pm
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 Math
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 MT
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 Net
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 Params
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 SOAP
drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 UDDI
drwxr-xr-x    4 root     root         4.0K Aug 30 19:47 URI
-rwxr-xr-x    1 root     root          26K Aug 30 19:47 URI.pm
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 WWW
drwxr-xr-x    5 root     root         4.0K Aug 30 19:47 XML
drwxr-xr-x    3 root     root         4.0K Aug 30 19:47 XMLRPC

bubba [/home/post/public_html/cgi-bin/extlib] # cd HTML
bubba [/home/post/public_html/cgi-bin/extlib/HTML] # ls -lah

drwxr-xr-x    2 root     root         4.0K Aug 30 19:47 .
drwxr-xr-x   24 root     root         4.0K Aug 30 19:47 ..
-rwxr-xr-x    1 root     root          15K Aug 30 19:47 Form.pm
-rwxr-xr-x    1 root     root         104K Aug 30 19:47 Template.pm      note 755 permissions on this file

bubba [/home/post/public_html/cgi-bin/extlib/HTML] #

Sample mt-load.cgi Output

Movable Type System Loader [mt-load.cgi]

This page configures Movable Type to run on your system. If all of the tasks needed to set up Movable Type complete succesfully on your server, you will see a notice to that effect at the bottom of this page. If there are any problems during setup, you will see them display on this page so that you can make the appropriate corrections.

Movable Type System Setup

Loading initial data into system...

Loading database schema...

Loading weblog...

Loading author...

Loading permissions...

Loading templates...

Mapping templates to blog archive types...

Mapping template ID '13' to 'Daily'

Mapping template ID '13' to 'Weekly'

Mapping template ID '13' to 'Monthly'

Mapping template ID '14' to 'Category'

Mapping template ID '15' to 'Individual'

System Initialization Complete

Done loading initial data! All went well. You can now continue with setup of the Movable Type system as described in the installation instructions.

Very Important:

Now that you have run mt-load.cgi, you will never need to run it again. You should now delete mt-load.cgi from your webserver.

Failure to delete mt-load.cgi introduces a MAJOR SECURITY RISK.

MySql Installation and Setup

bubba [/root] # mysql -h elephant -V
mysql  Ver 11.18 Distrib 3.23.54, for redhat-linux-gnu (i386)

bubba [/root] # mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 29 to server version: 3.23.54

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> show databases;
+----------+
| Database |
+----------+
| mysql    |
| test     |
+----------+
2 rows in set (0.00 sec)

mysql> create database mt301;
Query OK, 1 row affected (0.00 sec)

mysql> show databases;
+----------+
| Database |
+----------+
| mt301    |
| mysql    |
| test     |
+----------+
3 rows in set (0.00 sec)

mysql> grant all on mt301.* to 'mtbloger'@'localhost' identified by 'boyjojo';
Query OK, 0 rows affected (0.00 sec)

mysql> show grants for mtbloger@localhost;
+------------------------------------------------------------------------------------------+
| Grants for mtbloger@localhost                                                          |
+------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'mtbloger'@'localhost' IDENTIFIED BY PASSWORD '479049ad108cb50d'   |
| GRANT ALL PRIVILEGES ON `mt301`.* TO 'mtbloger'@'localhost'                              |
+------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

mysql> quit
Bye
bubba [/root] #

Complete Listing of Movable Type Files

bubba [/usr/local/src] # tar -tf MT-3[1].01D.tar
MT-3.01D-full-en_us/
MT-3.01D-full-en_us/extlib/
MT-3.01D-full-en_us/extlib/XML/
MT-3.01D-full-en_us/extlib/XML/XPath/
MT-3.01D-full-en_us/extlib/XML/XPath/Node/
MT-3.01D-full-en_us/extlib/XML/XPath/Node/Namespace.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node/PI.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node/Attribute.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node/Comment.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node/Text.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node/Element.pm
MT-3.01D-full-en_us/extlib/XML/XPath/LocationPath.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Root.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Number.pm
MT-3.01D-full-en_us/extlib/XML/XPath/NodeSet.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Parser.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Literal.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Variable.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Step.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Node.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Expr.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Builder.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Boolean.pm
MT-3.01D-full-en_us/extlib/XML/XPath/Function.pm
MT-3.01D-full-en_us/extlib/XML/XPath/PerlSAX.pm
MT-3.01D-full-en_us/extlib/XML/XPath/XMLParser.pm
MT-3.01D-full-en_us/extlib/XML/Atom/
MT-3.01D-full-en_us/extlib/XML/Atom/Author.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Feed.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Link.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Server.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Client.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Person.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Thing.pm
MT-3.01D-full-en_us/extlib/XML/Atom/API.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Util.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Entry.pm
MT-3.01D-full-en_us/extlib/XML/Atom/Content.pm
MT-3.01D-full-en_us/extlib/XML/Atom/ErrorHandler.pm
MT-3.01D-full-en_us/extlib/XML/Atom.pm
MT-3.01D-full-en_us/extlib/XML/XPath.pm
MT-3.01D-full-en_us/extlib/XML/Parser/
MT-3.01D-full-en_us/extlib/XML/Parser/Lite.pm
MT-3.01D-full-en_us/extlib/DateTime/
MT-3.01D-full-en_us/extlib/DateTime/TimeZoneCatalog.pm
MT-3.01D-full-en_us/extlib/DateTime/Infinite.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/OlsonDB.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/OffsetOnly.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/Local.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/Floating.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone/UTC.pm
MT-3.01D-full-en_us/extlib/DateTime/Locale/
MT-3.01D-full-en_us/extlib/DateTime/Locale/Alias/
MT-3.01D-full-en_us/extlib/DateTime/Locale/Alias/ISO639_2.pm
MT-3.01D-full-en_us/extlib/DateTime/Locale/Base.pm
MT-3.01D-full-en_us/extlib/DateTime/Locale/root.pm
MT-3.01D-full-en_us/extlib/DateTime/Locale.pm
MT-3.01D-full-en_us/extlib/DateTime/LeapSecond.pm
MT-3.01D-full-en_us/extlib/DateTime/Duration.pm
MT-3.01D-full-en_us/extlib/DateTime/LocaleCatalog.pm
MT-3.01D-full-en_us/extlib/DateTime/TimeZone.pm
MT-3.01D-full-en_us/extlib/Params/
MT-3.01D-full-en_us/extlib/Params/ValidateXS.pm
MT-3.01D-full-en_us/extlib/Params/ValidatePP.pm
MT-3.01D-full-en_us/extlib/Params/Validate.pm
MT-3.01D-full-en_us/extlib/MT/
MT-3.01D-full-en_us/extlib/MT/L10N/
MT-3.01D-full-en_us/extlib/Math/
MT-3.01D-full-en_us/extlib/Math/BigInt.pm
MT-3.01D-full-en_us/extlib/Math/BigInt/
MT-3.01D-full-en_us/extlib/Math/BigInt/Scalar.pm
MT-3.01D-full-en_us/extlib/Math/BigInt/Calc.pm
MT-3.01D-full-en_us/extlib/Math/BigInt/Trace.pm
MT-3.01D-full-en_us/extlib/Locale/
MT-3.01D-full-en_us/extlib/Locale/Maketext.pod
MT-3.01D-full-en_us/extlib/Locale/Maketext.pm
MT-3.01D-full-en_us/extlib/Locale/Maketext/
MT-3.01D-full-en_us/extlib/Locale/Maketext/TPJ13.pod
MT-3.01D-full-en_us/extlib/I18N/
MT-3.01D-full-en_us/extlib/I18N/LangTags.pm
MT-3.01D-full-en_us/extlib/I18N/LangTags/
MT-3.01D-full-en_us/extlib/I18N/LangTags/List.pm
MT-3.01D-full-en_us/extlib/DateTime.pm
MT-3.01D-full-en_us/extlib/DateTimePP.pm
MT-3.01D-full-en_us/extlib/Attribute/
MT-3.01D-full-en_us/extlib/Attribute/Params/
MT-3.01D-full-en_us/extlib/Attribute/Params/Validate.pm
MT-3.01D-full-en_us/extlib/DateTimePPExtra.pm
MT-3.01D-full-en_us/extlib/HTML/
MT-3.01D-full-en_us/extlib/HTML/Template.pm
MT-3.01D-full-en_us/extlib/HTML/Form.pm
MT-3.01D-full-en_us/extlib/Image/
MT-3.01D-full-en_us/extlib/Image/Size.pm
MT-3.01D-full-en_us/extlib/File/
MT-3.01D-full-en_us/extlib/File/Spec/
MT-3.01D-full-en_us/extlib/File/Spec/OS2.pm
MT-3.01D-full-en_us/extlib/File/Spec/Mac.pm
MT-3.01D-full-en_us/extlib/File/Spec/VMS.pm
MT-3.01D-full-en_us/extlib/File/Spec/Functions.pm
MT-3.01D-full-en_us/extlib/File/Spec/Unix.pm
MT-3.01D-full-en_us/extlib/File/Spec/Win32.pm
MT-3.01D-full-en_us/extlib/File/Spec.pm
MT-3.01D-full-en_us/extlib/File/Temp.pm
MT-3.01D-full-en_us/extlib/File/Listing.pm
MT-3.01D-full-en_us/extlib/URI/
MT-3.01D-full-en_us/extlib/URI/mailto.pm
MT-3.01D-full-en_us/extlib/URI/_generic.pm
MT-3.01D-full-en_us/extlib/URI/urn.pm
MT-3.01D-full-en_us/extlib/URI/file.pm
MT-3.01D-full-en_us/extlib/URI/_login.pm
MT-3.01D-full-en_us/extlib/URI/Heuristic.pm
MT-3.01D-full-en_us/extlib/URI/rtsp.pm
MT-3.01D-full-en_us/extlib/URI/file/
MT-3.01D-full-en_us/extlib/URI/file/Base.pm
MT-3.01D-full-en_us/extlib/URI/file/OS2.pm
MT-3.01D-full-en_us/extlib/URI/file/Mac.pm
MT-3.01D-full-en_us/extlib/URI/file/QNX.pm
MT-3.01D-full-en_us/extlib/URI/file/FAT.pm
MT-3.01D-full-en_us/extlib/URI/file/Win32.pm
MT-3.01D-full-en_us/extlib/URI/file/Unix.pm
MT-3.01D-full-en_us/extlib/URI/snews.pm
MT-3.01D-full-en_us/extlib/URI/rsync.pm
MT-3.01D-full-en_us/extlib/URI/URL.pm
MT-3.01D-full-en_us/extlib/URI/_foreign.pm
MT-3.01D-full-en_us/extlib/URI/ftp.pm
MT-3.01D-full-en_us/extlib/URI/Escape.pm
MT-3.01D-full-en_us/extlib/URI/urn/
MT-3.01D-full-en_us/extlib/URI/urn/oid.pm
MT-3.01D-full-en_us/extlib/URI/urn/isbn.pm
MT-3.01D-full-en_us/extlib/URI/data.pm
MT-3.01D-full-en_us/extlib/URI/_segment.pm
MT-3.01D-full-en_us/extlib/URI/_query.pm
MT-3.01D-full-en_us/extlib/URI/rtspu.pm
MT-3.01D-full-en_us/extlib/URI/QueryParam.pm
MT-3.01D-full-en_us/extlib/URI/rlogin.pm
MT-3.01D-full-en_us/extlib/URI/https.pm
MT-3.01D-full-en_us/extlib/URI/pop.pm
MT-3.01D-full-en_us/extlib/URI/http.pm
MT-3.01D-full-en_us/extlib/URI/sips.pm
MT-3.01D-full-en_us/extlib/URI/nntp.pm
MT-3.01D-full-en_us/extlib/URI/sip.pm
MT-3.01D-full-en_us/extlib/URI/news.pm
MT-3.01D-full-en_us/extlib/URI/ssh.pm
MT-3.01D-full-en_us/extlib/URI/ldap.pm
MT-3.01D-full-en_us/extlib/URI/telnet.pm
MT-3.01D-full-en_us/extlib/URI/_server.pm
MT-3.01D-full-en_us/extlib/URI/WithBase.pm
MT-3.01D-full-en_us/extlib/URI/gopher.pm
MT-3.01D-full-en_us/extlib/URI/_userpass.pm
MT-3.01D-full-en_us/extlib/URI.pm
MT-3.01D-full-en_us/extlib/HTTP/
MT-3.01D-full-en_us/extlib/HTTP/Cookies.pm
MT-3.01D-full-en_us/extlib/HTTP/Status.pm
MT-3.01D-full-en_us/extlib/HTTP/Request/
MT-3.01D-full-en_us/extlib/HTTP/Request/Common.pm
MT-3.01D-full-en_us/extlib/HTTP/Headers/
MT-3.01D-full-en_us/extlib/HTTP/Headers/Auth.pm
MT-3.01D-full-en_us/extlib/HTTP/Headers/ETag.pm
MT-3.01D-full-en_us/extlib/HTTP/Headers/Util.pm
MT-3.01D-full-en_us/extlib/HTTP/Request.pm
MT-3.01D-full-en_us/extlib/HTTP/Response.pm
MT-3.01D-full-en_us/extlib/HTTP/Date.pm
MT-3.01D-full-en_us/extlib/HTTP/Daemon.pm
MT-3.01D-full-en_us/extlib/HTTP/Message.pm
MT-3.01D-full-en_us/extlib/HTTP/Negotiate.pm
MT-3.01D-full-en_us/extlib/HTTP/Headers.pm
MT-3.01D-full-en_us/extlib/LWP/
MT-3.01D-full-en_us/extlib/LWP/Protocol/
MT-3.01D-full-en_us/extlib/LWP/Protocol/nntp.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/ftp.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/mailto.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/GHTTP.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/nogo.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/file.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/data.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/https10.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/http10.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/https.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/gopher.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol/http.pm
MT-3.01D-full-en_us/extlib/LWP/RobotUA.pm
MT-3.01D-full-en_us/extlib/LWP/MemberMixin.pm
MT-3.01D-full-en_us/extlib/LWP/media.types
MT-3.01D-full-en_us/extlib/LWP/Debug.pm
MT-3.01D-full-en_us/extlib/LWP/UserAgent.pm
MT-3.01D-full-en_us/extlib/LWP/MediaTypes.pm
MT-3.01D-full-en_us/extlib/LWP/Protocol.pm
MT-3.01D-full-en_us/extlib/LWP/ConnCache.pm
MT-3.01D-full-en_us/extlib/LWP/Authen/
MT-3.01D-full-en_us/extlib/LWP/Authen/Digest.pm
MT-3.01D-full-en_us/extlib/LWP/Authen/Basic.pm
MT-3.01D-full-en_us/extlib/LWP/Simple.pm
MT-3.01D-full-en_us/extlib/LWP.pm
MT-3.01D-full-en_us/extlib/Net/
MT-3.01D-full-en_us/extlib/Net/HTTP/
MT-3.01D-full-en_us/extlib/Net/HTTP/Methods.pm
MT-3.01D-full-en_us/extlib/Net/HTTP/NB.pm
MT-3.01D-full-en_us/extlib/Net/HTTP.pm
MT-3.01D-full-en_us/extlib/Net/HTTPS.pm
MT-3.01D-full-en_us/extlib/WWW/
MT-3.01D-full-en_us/extlib/WWW/RobotRules/
MT-3.01D-full-en_us/extlib/WWW/RobotRules/AnyDBM_File.pm
MT-3.01D-full-en_us/extlib/WWW/RobotRules.pm
MT-3.01D-full-en_us/extlib/CGI/
MT-3.01D-full-en_us/extlib/CGI/Fast.pm
MT-3.01D-full-en_us/extlib/CGI/Apache.pm
MT-3.01D-full-en_us/extlib/CGI/Util.pm
MT-3.01D-full-en_us/extlib/CGI/Push.pm
MT-3.01D-full-en_us/extlib/CGI/Pretty.pm
MT-3.01D-full-en_us/extlib/CGI/Switch.pm
MT-3.01D-full-en_us/extlib/CGI/Cookie.pm
MT-3.01D-full-en_us/extlib/CGI/Carp.pm
MT-3.01D-full-en_us/extlib/CGI.pm
MT-3.01D-full-en_us/extlib/Apache/
MT-3.01D-full-en_us/extlib/Apache/SOAP.pm
MT-3.01D-full-en_us/extlib/Apache/XMLRPC/
MT-3.01D-full-en_us/extlib/Apache/XMLRPC/Lite.pm
MT-3.01D-full-en_us/extlib/IO/
MT-3.01D-full-en_us/extlib/IO/SessionData.pm
MT-3.01D-full-en_us/extlib/IO/SessionSet.pm
MT-3.01D-full-en_us/extlib/SOAP/
MT-3.01D-full-en_us/extlib/SOAP/Lite.pm
MT-3.01D-full-en_us/extlib/SOAP/Test.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/
MT-3.01D-full-en_us/extlib/SOAP/Transport/JABBER.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/FTP.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/HTTP.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/IO.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/LOCAL.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/MAILTO.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/MQ.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/POP3.pm
MT-3.01D-full-en_us/extlib/SOAP/Transport/TCP.pm
MT-3.01D-full-en_us/extlib/UDDI/
MT-3.01D-full-en_us/extlib/UDDI/Lite.pm
MT-3.01D-full-en_us/extlib/XMLRPC/
MT-3.01D-full-en_us/extlib/XMLRPC/Lite.pm
MT-3.01D-full-en_us/extlib/XMLRPC/Test.pm
MT-3.01D-full-en_us/extlib/XMLRPC/Transport/
MT-3.01D-full-en_us/extlib/XMLRPC/Transport/HTTP.pm
MT-3.01D-full-en_us/extlib/XMLRPC/Transport/POP3.pm
MT-3.01D-full-en_us/extlib/XMLRPC/Transport/TCP.pm
MT-3.01D-full-en_us/images/
MT-3.01D-full-en_us/images/nav-categories.gif
MT-3.01D-full-en_us/images/mininav-comments.gif
MT-3.01D-full-en_us/images/nav-rebuild.gif
MT-3.01D-full-en_us/images/unreg-com.gif
MT-3.01D-full-en_us/images/topnav-logo.gif
MT-3.01D-full-en_us/images/post-button.gif
MT-3.01D-full-en_us/images/nav-config.gif
MT-3.01D-full-en_us/images/button-ban.gif
MT-3.01D-full-en_us/images/button-approve-user.gif
MT-3.01D-full-en_us/images/frontnav-activity-log.gif
MT-3.01D-full-en_us/images/frontnav-create-weblog.gif
MT-3.01D-full-en_us/images/frontnav-profile.gif
MT-3.01D-full-en_us/images/bar-back.gif
MT-3.01D-full-en_us/images/nav-search.gif
MT-3.01D-full-en_us/images/underline-button.gif
MT-3.01D-full-en_us/images/nav-import.gif
MT-3.01D-full-en_us/images/new-blog-icon.gif
MT-3.01D-full-en_us/images/nav-entries.gif
MT-3.01D-full-en_us/images/author-approved.gif
MT-3.01D-full-en_us/images/nav-new-entry.gif
MT-3.01D-full-en_us/images/frontnav-authors.gif
MT-3.01D-full-en_us/images/url-button.gif
MT-3.01D-full-en_us/images/italic-button.gif
MT-3.01D-full-en_us/images/nav-notifications.gif
MT-3.01D-full-en_us/images/reg-com.gif
MT-3.01D-full-en_us/images/nav-upload.gif
MT-3.01D-full-en_us/images/bullet.gif
MT-3.01D-full-en_us/images/button-approve-comment.gif
MT-3.01D-full-en_us/images/topnav-bg.gif
MT-3.01D-full-en_us/images/powered.gif
MT-3.01D-full-en_us/images/mininav-entries.gif
MT-3.01D-full-en_us/images/mininav-templates.gif
MT-3.01D-full-en_us/images/nav-view-site.gif
MT-3.01D-full-en_us/images/mininav-docs.gif
MT-3.01D-full-en_us/images/nav-templates.gif
MT-3.01D-full-en_us/images/nav-trackbacks.gif
MT-3.01D-full-en_us/images/mt-logo.gif
MT-3.01D-full-en_us/images/nav-comments.gif
MT-3.01D-full-en_us/images/edit-profile-icon.gif
MT-3.01D-full-en_us/images/bold-button.gif
MT-3.01D-full-en_us/images/filter.gif
MT-3.01D-full-en_us/images/mininav-delete.gif
MT-3.01D-full-en_us/images/spacer.gif
MT-3.01D-full-en_us/images/author-pending.gif
MT-3.01D-full-en_us/images/button-ban-user.gif
MT-3.01D-full-en_us/images/nav-commenters.gif
MT-3.01D-full-en_us/images/edit-author-icon.gif
MT-3.01D-full-en_us/images/button-approve.gif
MT-3.01D-full-en_us/images/logo-small.gif
MT-3.01D-full-en_us/images/activity-icon.gif
MT-3.01D-full-en_us/images/mininav-config.gif
MT-3.01D-full-en_us/images/bookmarklet-icon.gif
MT-3.01D-full-en_us/images/author-blocked.gif
MT-3.01D-full-en_us/images/frontnav-quickpost.gif
MT-3.01D-full-en_us/images/mininav-new-entry.gif
MT-3.01D-full-en_us/schemas/
MT-3.01D-full-en_us/schemas/postgres.dump
MT-3.01D-full-en_us/schemas/sqlite.dump
MT-3.01D-full-en_us/schemas/mysql.dump
MT-3.01D-full-en_us/tmpl/
MT-3.01D-full-en_us/tmpl/cms/
MT-3.01D-full-en_us/tmpl/cms/list_notification.tmpl
MT-3.01D-full-en_us/tmpl/cms/bm_posted.tmpl
MT-3.01D-full-en_us/tmpl/cms/login.tmpl
MT-3.01D-full-en_us/tmpl/cms/upload.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_template.tmpl
MT-3.01D-full-en_us/tmpl/cms/rebuild_confirm.tmpl
MT-3.01D-full-en_us/tmpl/cms/tb_cat_pings.tmpl
MT-3.01D-full-en_us/tmpl/cms/error.tmpl
MT-3.01D-full-en_us/tmpl/cms/pinged_urls.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_category.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_permissions.tmpl
MT-3.01D-full-en_us/tmpl/cms/footer-popup.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_comment.tmpl
MT-3.01D-full-en_us/tmpl/cms/delete_confirm.tmpl
MT-3.01D-full-en_us/tmpl/cms/import.tmpl
MT-3.01D-full-en_us/tmpl/cms/cfg_archives_add.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_entry.tmpl
MT-3.01D-full-en_us/tmpl/cms/bookmarklets.tmpl
MT-3.01D-full-en_us/tmpl/cms/pending_commenter.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_blog.tmpl
MT-3.01D-full-en_us/tmpl/cms/recover.tmpl
MT-3.01D-full-en_us/tmpl/cms/cfg_prefs.tmpl
MT-3.01D-full-en_us/tmpl/cms/reload_opener.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_comment.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_author.tmpl
MT-3.01D-full-en_us/tmpl/cms/pinging.tmpl
MT-3.01D-full-en_us/tmpl/cms/footer.tmpl
MT-3.01D-full-en_us/tmpl/cms/copyright.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_categories.tmpl
MT-3.01D-full-en_us/tmpl/cms/preview_entry.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_commenters.tmpl
MT-3.01D-full-en_us/tmpl/cms/bm_entry.tmpl
MT-3.01D-full-en_us/tmpl/cms/show_upload_html.tmpl
MT-3.01D-full-en_us/tmpl/cms/cfg_banlist.tmpl
MT-3.01D-full-en_us/tmpl/cms/cfg_archives.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_author.tmpl
MT-3.01D-full-en_us/tmpl/cms/search_replace.tmpl
MT-3.01D-full-en_us/tmpl/cms/rebuilt.tmpl
MT-3.01D-full-en_us/tmpl/cms/upload_complete.tmpl
MT-3.01D-full-en_us/tmpl/cms/header.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_entry.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_template.tmpl
MT-3.01D-full-en_us/tmpl/cms/category_add.tmpl
MT-3.01D-full-en_us/tmpl/cms/cc_return.tmpl
MT-3.01D-full-en_us/tmpl/cms/menu.tmpl
MT-3.01D-full-en_us/tmpl/cms/entry_prefs.tmpl
MT-3.01D-full-en_us/tmpl/cms/header-popup.tmpl
MT-3.01D-full-en_us/tmpl/cms/upload_confirm.tmpl
MT-3.01D-full-en_us/tmpl/cms/view_log.tmpl
MT-3.01D-full-en_us/tmpl/cms/rebuild-stub.tmpl
MT-3.01D-full-en_us/tmpl/cms/rebuilding.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_ping.tmpl
MT-3.01D-full-en_us/tmpl/cms/edit_placements.tmpl
MT-3.01D-full-en_us/tmpl/cms/list_blog.tmpl
MT-3.01D-full-en_us/tmpl/email/
MT-3.01D-full-en_us/tmpl/email/verify-subscribe.tmpl
MT-3.01D-full-en_us/tmpl/email/new-comment.tmpl
MT-3.01D-full-en_us/tmpl/error.tmpl
MT-3.01D-full-en_us/docs/
MT-3.01D-full-en_us/docs/mtinstall.html
MT-3.01D-full-en_us/docs/mtmanual_installation.html
MT-3.01D-full-en_us/docs/mtmanual_troubleshooting.html
MT-3.01D-full-en_us/docs/mtmanual_alternate.html
MT-3.01D-full-en_us/docs/777.gif
MT-3.01D-full-en_us/docs/mtmanual_about.html
MT-3.01D-full-en_us/docs/mtmanual_public.html
MT-3.01D-full-en_us/docs/box.gif
MT-3.01D-full-en_us/docs/mtmanual_archiving.html
MT-3.01D-full-en_us/docs/mtmanual_uploading.html
MT-3.01D-full-en_us/docs/mtchanges.html
MT-3.01D-full-en_us/docs/mtmanual_notifications.html
MT-3.01D-full-en_us/docs/mtmanual_importing.html
MT-3.01D-full-en_us/docs/doc-styles.css
MT-3.01D-full-en_us/docs/mttags.html
MT-3.01D-full-en_us/docs/mtmanual_search.html
MT-3.01D-full-en_us/docs/mtmanual_entries.html
MT-3.01D-full-en_us/docs/mtmanual_programmatic.html
MT-3.01D-full-en_us/docs/mt30.html
MT-3.01D-full-en_us/docs/mtimport.html
MT-3.01D-full-en_us/docs/mtmanual.html
MT-3.01D-full-en_us/docs/mtmanual_rebuilding.html
MT-3.01D-full-en_us/docs/mtmanual_sanitize.html
MT-3.01D-full-en_us/docs/mtmanual_weblog_config.html
MT-3.01D-full-en_us/docs/mtmanual_copyright.html
MT-3.01D-full-en_us/docs/mtmanual_authors.html
MT-3.01D-full-en_us/docs/mtmanual_trackback.html
MT-3.01D-full-en_us/docs/tk-apps.html
MT-3.01D-full-en_us/docs/mtmanual_configuration.html
MT-3.01D-full-en_us/docs/mtmanual_weblogs.html
MT-3.01D-full-en_us/docs/mtmanual_tags.html
MT-3.01D-full-en_us/docs/755.gif
MT-3.01D-full-en_us/docs/mtmanual_multilanguage.html
MT-3.01D-full-en_us/docs/mtmanual_templates.html
MT-3.01D-full-en_us/docs/plugin-tut.html
MT-3.01D-full-en_us/docs/mtmanual_categories.html
MT-3.01D-full-en_us/docs/mt26.html
MT-3.01D-full-en_us/docs/mtupgrade.html
MT-3.01D-full-en_us/docs/mtmanual_comments.html
MT-3.01D-full-en_us/docs/mtmanual_mail.html
MT-3.01D-full-en_us/mt-xmlrpc.cgi
MT-3.01D-full-en_us/lib/
MT-3.01D-full-en_us/lib/MT/
MT-3.01D-full-en_us/lib/MT/TBPing.pm
MT-3.01D-full-en_us/lib/MT/Log.pm
MT-3.01D-full-en_us/lib/MT/Sanitize.pm
MT-3.01D-full-en_us/lib/MT/Callback.pm
MT-3.01D-full-en_us/lib/MT/PluginData.pm
MT-3.01D-full-en_us/lib/MT/Blog.pm
MT-3.01D-full-en_us/lib/MT/Entry.pm
MT-3.01D-full-en_us/lib/MT/XMLRPC.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver/
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBI/
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBI/sqlite.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBI/postgres.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBI/mysql.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBM.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver/DBI.pm
MT-3.01D-full-en_us/lib/MT/XMLRPCServer.pm
MT-3.01D-full-en_us/lib/MT/Template/
MT-3.01D-full-en_us/lib/MT/Template/#Context.pm#
MT-3.01D-full-en_us/lib/MT/Template/Context.pm
MT-3.01D-full-en_us/lib/MT/L10N/
MT-3.01D-full-en_us/lib/MT/L10N/ja.pm
MT-3.01D-full-en_us/lib/MT/L10N/en_us.pm
MT-3.01D-full-en_us/lib/MT/Comment.pm
MT-3.01D-full-en_us/lib/MT/Serialize.pm
MT-3.01D-full-en_us/lib/MT/Plugin.pm
MT-3.01D-full-en_us/lib/MT/FileMgr.pm
MT-3.01D-full-en_us/lib/MT/default-templates.pl
MT-3.01D-full-en_us/lib/MT/App/
MT-3.01D-full-en_us/lib/MT/App/Viewer.pm
MT-3.01D-full-en_us/lib/MT/App/Trackback.pm
MT-3.01D-full-en_us/lib/MT/App/Search.pm
MT-3.01D-full-en_us/lib/MT/App/NotifyList.pm
MT-3.01D-full-en_us/lib/MT/App/CMS.pm
MT-3.01D-full-en_us/lib/MT/App/Comments.pm
MT-3.01D-full-en_us/lib/MT/TemplateMap.pm
MT-3.01D-full-en_us/lib/MT/L10N.pm
MT-3.01D-full-en_us/lib/MT/Mail.pm
MT-3.01D-full-en_us/lib/MT/Object.pm
MT-3.01D-full-en_us/lib/MT/Author.pm
MT-3.01D-full-en_us/lib/MT/Atom.pm
MT-3.01D-full-en_us/lib/MT/ImportExport.pm
MT-3.01D-full-en_us/lib/MT/ObjectDriver.pm
MT-3.01D-full-en_us/lib/MT/Permission.pm
MT-3.01D-full-en_us/lib/MT/Session.pm
MT-3.01D-full-en_us/lib/MT/Request.pm
MT-3.01D-full-en_us/lib/MT/Trackback.pm
MT-3.01D-full-en_us/lib/MT/IPBanList.pm
MT-3.01D-full-en_us/lib/MT/AtomServer.pm
MT-3.01D-full-en_us/lib/MT/GoogleSearch.wsdl
MT-3.01D-full-en_us/lib/MT/ErrorHandler.pm
MT-3.01D-full-en_us/lib/MT/Placement.pm
MT-3.01D-full-en_us/lib/MT/Builder.pm
MT-3.01D-full-en_us/lib/MT/Notification.pm
MT-3.01D-full-en_us/lib/MT/Image.pm
MT-3.01D-full-en_us/lib/MT/Category.pm
MT-3.01D-full-en_us/lib/MT/Util.pm
MT-3.01D-full-en_us/lib/MT/FileMgr/
MT-3.01D-full-en_us/lib/MT/FileMgr/Local.pm
MT-3.01D-full-en_us/lib/MT/App.pm
MT-3.01D-full-en_us/lib/MT/Promise.pm
MT-3.01D-full-en_us/lib/MT/ConfigMgr.pm
MT-3.01D-full-en_us/lib/MT/Template.pm
MT-3.01D-full-en_us/lib/MT.pm
MT-3.01D-full-en_us/mt.cfg
MT-3.01D-full-en_us/tools/
MT-3.01D-full-en_us/tools/sig-validate
MT-3.01D-full-en_us/tools/list-objects
MT-3.01D-full-en_us/tools/list-index
MT-3.01D-full-en_us/mt-comments.cgi
MT-3.01D-full-en_us/index.html
MT-3.01D-full-en_us/search_templates/
MT-3.01D-full-en_us/search_templates/comments.tmpl
MT-3.01D-full-en_us/search_templates/default.tmpl
MT-3.01D-full-en_us/mt.cgi
MT-3.01D-full-en_us/mt-set-reg.cgi
MT-3.01D-full-en_us/mt.js
MT-3.01D-full-en_us/mt-view.cgi
MT-3.01D-full-en_us/LICENSE-PERSONAL
MT-3.01D-full-en_us/mt-tb.cgi
MT-3.01D-full-en_us/mt-send-entry.cgi
MT-3.01D-full-en_us/mt-check.cgi
MT-3.01D-full-en_us/error.tmpl
MT-3.01D-full-en_us/mt-add-notify.cgi
MT-3.01D-full-en_us/mt-testbg.cgi
MT-3.01D-full-en_us/LICENSE-COMMERCIAL
MT-3.01D-full-en_us/mt-search.cgi
MT-3.01D-full-en_us/mt-db-pass.cgi
MT-3.01D-full-en_us/styles.css
MT-3.01D-full-en_us/mt-load.cgi
MT-3.01D-full-en_us/mt-atom.cgi
bubba [/usr/local/src] #