Sorry for the downtime tonight

I messed up the web server for about 3 hours tonight. The problem was related to me working with IIS and Apache on the same machine.

If you notice anything amiss with your blog, let me know by posting a comment on the thread. While things should be back to normal now, when I was reinstalling the web server I may have missed something small.

The good news is that these changes are all related to getting a very nice WordPress setup created. Right now everything is in place (including automated FTP account creation.) The next step is to figure out how to make the preexisting MT stuff coexist with the new WP stuff.

My apologies for the down time,
-JD
http://www.jdhodges.com/

6 comments

  1. Still Down:

    Entry Page:

    #!/usr/bin/perl -w

    # Copyright 2001-2003 Six Apart. This code cannot be redistributed without
    # permission from http://www.movabletype.org.
    #
    # $Id: mt.cgi,v 1.18 2003/02/12 01:05:31 btrott Exp $
    use strict;

    my($MT_DIR);
    BEGIN {
    if ($0 =~ m!(.*[/\])!) {
    $MT_DIR = $1;
    } else {
    $MT_DIR = ‘./’;
    }
    unshift @INC, $MT_DIR . ‘lib’;
    unshift @INC, $MT_DIR . ‘extlib’;
    }

    eval {
    require MT::App::CMS;
    my $app = MT::App::CMS->new( Config => $MT_DIR . ‘mt.cfg’,
    Directory => $MT_DIR )
    or die MT::App::CMS->errstr;
    local $SIG{__WARN__} = sub { $app->trace($_[0]) };
    $app->run;
    };
    if ($@) {
    print “Content-Type: text/html\n\n”;
    print “Got an error: $@”;
    }

    BLOG:

    Movable Type

    You cannot view the contents of this directory.

    If you are installing Movable Type for the first time, look at the Installation Instructions

  2. Hi Cinderella, is your blog working now?

    If this is it, http://cinderella.weblogs.us/ then I think it is fixed now. I posted a test entry and it succeeded…

    If it is not fixed, please post here with your email address, or email me at jd_hodges_ii AT hotmail.com

    Thanks!
    -JD

  3. Just to update everyone, Cindy and I figured out the problem last night so everythign is all fixed. ALSO, today I upgraded the servers CPUs, woot! (everything is faster now 🙂

Comments are closed.