Anyone out there can help me out, I have no clue how to fix this.
Thanks if you can help, I am not computer literate.
Take care.
Error during upgrade: Undefined subroutine &CustomFields::Upgrade::customfields_move_meta called at lib/MT/Upgrade.pm line 1145.
When I opened the file Upgrade.pm with dreamweaver. Upgrade.pm line 1145
}
sub core_upgrade_plugindata_meta_for_table {
my $self = shift;
return 0 if $Installing;
my (%param) = @_;
my $type = $param{type};
return 0 unless $type;
my $class = MT->model($type);
return 0 unless $class;
my $cfclass = MT->model('field');
return 0 if !$cfclass;
# this looks weird, but it winds up invoking
# the loading of custom field types and the
# installation of their meta properties
MT->registry('tags');
# special case for types that use CustomField plugindata
# for storing their custom field metadata instead of a 'meta'
# column.
require CustomFields::Upgrade;
# TODO: really this should vary on $type but it's already translated for "categories"
$self->progress($self->translate_escape('Moving metadata storage for categories...'));
CustomFields::Upgrade::customfields_move_meta($self, $type);
return 0;
}