Movable Type Installation Instructions


NAME

mtinstall - Movable Type Installation/Upgrading


SYNOPSIS

This document describes the process of installing the Movable Type system on your machine, or upgrading to a newer version of Movable Type.


REQUIREMENTS

Movable Type requires the following:


UPGRADING

If you have already installed a previous version of Movable Type (1.0, 1.1, 1.2, 1.3, or 1.31), you do not need to perform a complete installation. Instead, follow these steps:

  1. Download the upgrade distribution file (rather than the full distribution).

  2. Unpack the .tar.gz archive.

  3. Open an FTP connection to your webserver, and open the directory where you installed Movable Type.

  4. Upload all of the files and directories in the archive to your webserver, replacing any older copies of the files.

    Make sure that you upload all of the files in ASCII mode, except for any images, which should be uploaded in binary.

    NOTE: if you have made changes to any of the files that you are replacing, you will need to mark the files that have changed, and make the same changes to the new versions. This only applies if the changes you made have not been incorporated into the new Movable Type release in some form, of course. If you are unsure whether you need to redo a change you have made to one of the Movable Type files, ask your question on the Support Forum (http://www.movabletype.org/support/ib3/ikonboard.cgi).

  5. Ensure that the permissions of each of the CGI scripts (all files ending in the extension .cgi) are set to 755.

    This means that the owner should have read, write, and execute permissions, and that group and other should have read and execute permissions (but not write permissions).

  6. As of version 1.3, you can now control line and paragraph breaks separately for comments and entries; in other words, you can set Convert breaks for comments, but not for entries, if you would like. NOTE that if you wish to convert line and paragraph breaks in comments in version 1.3, you need to edit the configuration for each of your blogs, and check the Convert line and paragraph breaks in comments box.

  7. As of version 1.4, Movable Type requires at least version 0.8 of the File::Spec Perl module. If you are not certain whether your server meets this requirement, you should run mt-check.cgi again (see CHECKING FOR REQUIRED AND OPTIONAL MODULES, below); if your server needs a newer version of File::Spec, follow the instructions here.

  8. That's it! Movable Type is now upgraded, and you can start using the new version.


INSTALLING THE MOVABLE TYPE APPLICATION CODE

  1. Ensure that you meet all of the requirements as stated above.

  2. The files mt.cgi, mt-comments.cgi, mt-add-notify.cgi, mt-load.cgi, mt-check.cgi, mt-import.cgi, and mt-export.cgi are Perl scripts. The first line of each of these files must contain the path to Perl on your webserver; typically this is #!/usr/bin/perl. You may need to change this if Perl is at a different location on your webserver, such as /usr/local/bin/perl. If you do need to change the setting, take care not to remove the -w at the end of the first line in each file; this setting turns on warnings in Perl, and it is important that it be left on.

    To determine the location of Perl on your webserver, take a look at the support pages for your hosting service. Alternatively, if you have a shell (command line) account, and are familiar using it, you can log in to that account that type:

        $ whereis perl

    This will give you the location(s) of Perl on your system.

  3. Open your FTP program, and open an FTP connection to your webserver. Do not upload any files yet.

  4. Choose where on your webserver you would like to install Movable Type. This is the location that you will use (from your web browser) when using the Movable Type system.

  5. Find the file mt.cfg in the Movable Type folder that you downloaded, then open that file in a text editor.

    Change the line starting with CGIPath to point to the URL where you chose to install Movable Type in Step 4. For example, if you are installing Movable Type at http://www.your-site.com/movabletype/, you would change the CGIPath line to

        CGIPath http://www.your-site.com/movabletype/

    NOTE: make sure that your URL contains a forward slash (/) at the end!

    Keep your text editor open for further editing (in Step 8).

  6. Choose where on your webserver you would like to store your Movable Type database files.

    NOTE: it is advisable from a security standpoint to create the database directory outside of your web-accessible directories. This prevents web browsers from seeing any of your database content. For example, many hosted accounts have a home directory that is not web-accessible, then a public_html directory that is the root of your web-accessible area.

  7. In your FTP program, open the directory you chose in Step 6.

    Create a new directory called db. Set the permissions (CHMOD) of this directory db to 777. If your FTP client uses a graphical display, 777 means that all users in the list should have Read, Write, and Execute permissions.

  8. In the text editor where you are editing mt.cfg, change the line
        DataSource ./db

    to instead read

        DataSource /FULL/PATH/TO/DB

    where /FULL/PATH/TO/DB is replaced by the full filesystem path to the db directory you just created. For example, if you create the directory at /home/melody/db, the above line would read

        DataSource /home/melody/db

    Then save the mt.cfg file, and exit the text editor.

  9. In your FTP program, open the directory where you chose to install Movable Type in Step 4.

    Create a new directory for the Movable Types files, if necessary; then open that directory.

  10. Upload all of the files in the Movable Type directory to your webserver. NOTE: be careful when doing this, as certain files must be uploaded in ASCII mode, whereas others must be uploaded in binary mode. If you get it wrong, the script WILL NOT WORK.

    Upload these files/folders in ASCII mode: docs, lib, mt.cfg, styles.css, tmpl, and all of the CGI scripts (mt.cgi, etc.).

    Upload these files/folders in Binary mode: images.

  11. Set the permissions (CHMOD) of the files mt.cgi, mt-comments.cgi, mt-add-notify.cgi, mt-check.cgi, mt-load.cgi, mt-import.cgi, mt-export.cgi, and mt-xmlrpc.cgi to 755.

    If your FTP client sets permissions using a graphical display, make sure that all users in the list have Execute and Read permissions. Only the Owner should have Write permissions. NOTE: if you are using the Unix shell to set permissions, see Setting Permissions on Unix (below).

  12. Open your web browser and point it at the URL for mt-load.cgi on your site. For example, if your site is http://www.your-site.com/, and you uploaded the Movable Type files into the /mt directory, you'd type http://www.your-site.com/mt/mt-load.cgi.

    mt-load.cgi is a Perl script that loads initialization data into the Movable Type databases: an initial author, a blog, and some starter templates. If you get a 500 Internal Server Error when running this script, first check that you set the permissions to 755 (see above for what this means), and that you uploaded the file in ASCII mode. If these suggestions don't help, refer to the Troubleshooting section of the manual.

    If successful, mt-load.cgi will report its success. If unsuccessful, it will report the error that occurred. This error could be due to insufficient permissions on the db directory, or the non-existence of that directory. See Step 6 (above) to determine whether you set the permissions correctly.

    VERY IMPORTANT SECURITY NOTE:

    Afer running mt-load.cgi, you should remove mt-load.cgi from the directory where you installed Movable Type. Failure to remove mt-load.cgi could enable someone else to create a blog in your Movable Type installation, and possibly gain access to your data. FAILURE TO DELETE mt-load.cgi INTRODUCES A MAJOR SECURITY RISK. So you should delete it now.


CHECKING FOR REQUIRED AND OPTIONAL MODULES

Movable Type requires the presence of several standard Perl modules, separate from the Movable Type code itself. It is very possible that your server already has these required modules; if it does not, installing the modules is fairly simple. To determine whether these modules are installed on your server--and to install them, if they are not already installed--follow the steps below.

For the function of several optional features, Movable Type needs some optional Perl modules. These optional modules will be listed in Step 1 (below) under the heading CHECKING FOR OPTIONAL MODULES; if your webserver does not have an optional module, its purpose will be explained in relation to the Movable Type feature for which it is required. If you decide that you want to use these features, you will need to install these modules, as well; however, if you do not wish to use these features, you can ignore the missing modules.

  1. Open your web browser and point it at the URL for mt-check.cgi on your site. For example, if your site is http://www.your-site.com/, and you uploaded the Movable Type files into the /mt directory, you'd type http://www.your-site.com/mt/mt-check.cgi.

    mt-check.cgi is a Perl script that checks whether the required modules are installed on your server. If you get a 500 Internal Server Error when running this script, first check that you set the permissions to 755 (see above for what this means), and that you uploaded the file in ASCII mode. If these suggestions don't help, refer to the Troubleshooting section of the manual.

    If the script runs successfully, it will say CHECKING FOR REQUIRED MODULES and so on. If the script reports that your server has all of the required modules installed, you can skip to SETTING UP YOUR BLOG DIRECTORIES. Otherwise, continue with step 2.

  2. Connect to your FTP server, and open the directory into which you installed Movable Type. Create a new directory called extlib. Open that directory.

Now, follow the instructions below for each of the modules that you need to install.

If you need to install HTML::Template

  1. Download the file at this URL:
        http://www.cpan.org/modules/by-module/HTML/HTML-Template-2.4.tar.gz

  2. Unpack the .tar.gz archive (Need help unpacking archives?).

  3. In the extlib directory (see Step 2), create a new directory called HTML; open that directory; upload the file Template.pm from the HTML-Template archive into the new HTML directory. In other words, after uploading, Template.pm should be located at extlib/HTML/Template.pm.

    Ignore the rest of the files in the archive.

If you need to install Image::Size

  1. Download the file at this URL:
        http://www.movabletype.org/downloads/Image/Size.pm

  2. In the extlib directory on your webserver, create a new directory called Image, and open that directory.

  3. Upload the file Size.pm that you downloaded above into the new Image directory.

  4. After uploading, Size.pm should be located at extlib/Image/Size.pm.

If you need to install File::Spec

  1. Download the file at this URL:
        http://www.cpan.org/modules/by-module/File/File-Spec-0.82.tar.gz

  2. Unpack the .tar.gz archive (Need help unpacking archives?).

  3. In the extlib directory on your webserver, create a new directory called File, and open that directory.

  4. Upload the file Spec.pm into the new File directory; then upload the directory Spec into the new File directory.

  5. After uploading, Spec.pm should be located at extlib/File/Spec.pm, and Spec should be located at extlib/File/Spec/.

If you need to install DB_File

If you are installing Movable Type on a Win32 machine on which you have administrative access, you can run the Perl Package Manager (PPM) to install DB_File. Select Run... from the Start Menu, then type ppm as the program to run. Once in PPM, you will get a prompt (ppm>), at which you should type install DB_File:

    ppm> install DB_File

If you are installing Movable Type on a Linux/Unix machine, you should ask your server administrator to install DB_File for you.

If you need to install CGI::Cookie

  1. Download the file at this URL:
        http://www.cpan.org/modules/by-module/CGI/CGI.pm-2.78.tar.gz

  2. Unpack the .tar.gz archive (Need help unpacking archives?).

  3. Upload the file CGI.pm and the directory CGI into the extlib directory.

  4. After uploading, CGI.pm should be located at extlib/CGI.pm, and CGI/ should be located at extlib/CGI/.

If you need to install LWP::UserAgent

  1. Download the following files:
        http://www.cpan.org/modules/by-module/LWP/libwww-perl-5.62.tar.gz
        http://www.cpan.org/modules/by-module/URI/URI-1.17.tar.gz

  2. Unpack the .tar.gz archives (Need help unpacking archives?).

  3. In the libwww-perl-5.6.2 directory, there is a directory called lib. Open it, and upload the file LWP.pm into your extlib directory (in ASCII mode). Then, also in ASCII mode, upload the directories LWP, HTTP, Net, and WWW into extlib.

  4. From the URI-1.17 directory, upload the folder called URI and the file called URI.pm into extlib in ASCII mode.

  5. After uploading, your extlib directory should contain at least the following files and directories:
        extlib/LWP.pm
        extlib/LWP/
        extlib/HTTP/
        extlib/Net/
        extlib/WWW/
        extlib/URI.pm
        extlib/URI/

If you need to install SOAP::Lite

  1. Download the following file:
        http://www.cpan.org/modules/by-module/SOAP/SOAP-Lite-0.52.tar.gz

  2. Unpack the .tar.gz archive (Need help unpacking archives?).

  3. In the SOAP-Lite-0.52 directory, there is a directory called lib. Open it, and upload the directories SOAP, XML, and XMLRPC into your extlib directory (in ASCII mode).

  4. After uploading, your extlib directory should contain at least the following files and directories:
        extlib/SOAP/
        extlib/XML/
        extlib/XMLRPC/

If you need to install File::Temp

  1. Download the file at this URL:
        http://www.cpan.org/modules/by-module/File/File-Temp-0.12.tar.gz

  2. Unpack the .tar.gz archive (Need help unpacking archives?).

  3. In the extlib directory on your webserver, create a new directory called File (unless a File directory already exists), and open that directory.

  4. Upload the file Temp.pm into the new File directory.

  5. After uploading, Temp.pm should be located at extlib/File/Temp.pm.


SETTING UP YOUR BLOG DIRECTORIES

The following steps will need to be repeated every time you create a new blog/journal in Movable Type. These steps set up the necessary permissions on your blog directories to allow Movable Type to access them.

  1. You need to set up a directory where your weblog will be stored. In the case that this directory does not yet exist, create it; this directory does not have to be the same as that where you uploaded the files above (although it can be).

  2. Set the permissions (CHMOD) of your weblog directory to 777. (See above for what this means.)

  3. If you wish to store your archives in a separate directory than your main weblog (perhaps in a subdirectory of your main weblog), create that directory now, unless it already exists.

  4. Set the permissions (CHMOD) of your archives directory to 777. (See above for what this means.)


RUNNING MOVABLE TYPE

  1. Open your web browser and point it at the URL for mt.cgi on your site. mt.cgi is the main Movable Type application. For example, if your site is http://www.your-site.com/, and you installed the Movable Type application into the /mt directory, you'd type http://www.your-site.com/mt/mt.cgi to access Movable Type.

    You should see the Movable Type login prompt. If you do not, check your permissions, and check that you uploaded the CGI scripts using ASCII mode. If neither of these helps, take a look at the Troubleshooting section of the manual.

  2. Log in with the author name Melody and the password Nelson.

  3. The first thing you should do is change your author name and password. To do so, click Edit your profile, then change the author name and password there.

  4. The next thing to do is to configure your first blog. A blog called First Blog already exists in the system; this blog will help to give you a head start in setting up your first blog in Movable Type. First Blog comes with some pre-made templates; of course you can edit these templates, or delete them, or do whatever you like with them. But they are a good starting point, and will give you a sense of familiarity with the Movable Type template tags and structure.

    To configure the blog for your own purposes, click on the link to First Blog under Your existing blogs, then click on the link to Edit Blog Configuration. Change the name of the blog to whatever you wish to call your blog, and enter a description.

    Then, fill in the path and URL information (Local Site Path, Site URL, Local Archive Path, and Archive URL). Values for Local Site Path and Site URL are provided by default, to give you a sense of what the paths should look like; when setting the values of Local Site Path and Local Archive Path, it is best to use absolute paths (paths beginning with a /), rather than relative paths. Note that all four of these fields must be filled in. You should already have created the directories for your blog (above, in Setting up your blog directories). Fill in the local paths (site and archive) with the full paths to those directories. Then enter the appropriate URLs, corresponding to those directories.

    Edit any other configuration settings for your blog; when you are done, press SAVE.

  5. That's it! You're now ready to start posting entries to your blog, editing templates, and so on.


ADDITIONAL NOTES

Problems with f2s

WARNING: problems have been reported when running Movable Type on f2s accounts. These problems have been disk-space-related; specifically, if your f2s account is low on disk space, you should be careful when running Movable Type, because running out of disk space while the database is being updated could corrupt your data. This error is almost always fixable, but it is certainly an annoyance. Note that this problem is not necessarily unique to either Movable Type or f2s; when applications run out of disk space while trying to update files, problems will often occur.

Back to installation instructions

Version of Perl on your server

If you're not sure what version of Perl you have on your server, you can figure it out in one of three ways:

  1. Check the support documentation that your ISP (probably) provides.

  2. Ask your ISP.

  3. If you have shell access to your webserver, you can telnet into your server, then run the following command:
        $ perl -v

    This command will print out the version of Perl on your webserver.

Back to installation instructions

Unpacking .tar.gz Archives

Movable Type distributions, as well as the distributions for most of the required and optional Perl modules, are saved in .tar.gz format--these are Gzip-ed TAR archives. If you are on Unix, you can use gunzip and tar to unpack these archives. For example:

    $ gunzip file.tar.gz
    $ tar -xvf file.tar

If you are on a Macintosh, Stuffit Expander will unpack these archives. If you are on Windows, EasyZip or winzip will do the job.

Setting Permissions on Unix

If you are using the Unix shell to set permissions, the syntax for setting file and directory permissions is

    $ chmod <number> <files>

The above permissions, then, could be set with

    $ chmod 755 *.cgi

To determine the symbolic permissions of a file, you can use ls -l:

    $ ls -l *.cgi

The listing for mt.cgi, for example, should look like

    -rwxr-xr-x    1 <username>   users      <size> <date>

Symbolic permissions are read in groups of three (omitting the first character): read/write/execute by the owner of the file; read/write/execute by users in the same group as the owner; read/write/execute by all other users.

Back to installation instructions


Copyright © 2001, 2002 Ben Trott and Mena Trott. All Rights Reserved.