I'll submit a ticket.
I'm sure that the mt-load.cgi worked. I can see all 15 or so tables in my DB out there. I got a success message also.
Comparing mt-check.cgi and mt.cgi, in File Manager, File Manager gives me the ability to edit mt-check.cgi. It has the choice "Edit File" or similar. With mt.cgi, I don't get the option to edit. And it looks like:
!/usr/bin/perl -w CGIPath http://localhost/MT # Copyright 2001-2003 Six Apart. This code cannot be redistributed without # permission from 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: $@"; }
In comparison, mt-check.cgi is formatted nicely. (And mt.cgi is formatted correctly sitting on my PC, so it isn't junked before the upload) So, I guess I'm leaning toward mt.cgi not uploading properly. But like I said, I am doing this through command line on my windows machine, setting type to ASC, doing the put, and it comes back saying the file was indeed uploaded in ASC. I also tried through WSFTP. Very, very strange to say the least.
I'll submit the ticket.