First of all: please don't reply to a post that has absolutely nothing
to do with your problem.

On Fri, Sep 9, 2011 at 10:06 AM, Angelos Karageorgiou <ange...@unix.gr> wrote:
> Failed to connect to , Can't locate object method "__load_plugins" via
> package "
> MozRepl" at MozRepl.pm line 308.

AFAICT, MozRepl has a plugin mechanism that can't be detected by PAR::Packer
(actually by Module::ScanDeps) using static code analysis. To verify this, run

  unzip -l your-packed-executable.exe

and look for .../MozRepl/Plugin/... If these modules are missing:
- either pack using runtime analysis ("pp -x ...")
- or manually add "-M MozRepl::Plugin::Base" to the pp command line
  (you'll probably have to add other MozRepl::Plugin::* modules as well,
  depending on what your script actually uses)

Cheers, Roderich

Reply via email to