Вот такую ошибку выдает perl. В инете тем много, а как разрешить вопрос этот ничего я не нашел.
Software error:
Byte order is not compatible at ../../lib/Storable.pm (autosplit into ../../lib/auto/Storable/_retrieve.al) line 328, at ..//Modules/Constructor.pm line 187
Первый же хит в Google:The error
Byte order is not compatible at blib/lib/Storable.pm (autosplit into blib/lib/auto/Storable/thaw.al) line 363, at /home/username/cgi-bin/mt/lib/MT/PluginData.pm line 28
is because Perl 5.8.4 has a default byte order that is different from previous versions.
To resolve this you need to add the following after line 9 in lib/MT/PluginData.pm
begin {
$Storable::interwork_56_64bit = 1;
}Обрати внимание, что строка другая. Уточни, куда вставить begin {} в твоей версии.