in reply to Re^2: Can't locate loadable object for module X in @INC (@INC contains: ... )
in thread Can't locate loadable object for module X in @INC (@INC contains: ... )

If the error is caused by copying a module file from the installation tree without doing a make/install then you may be able to resolve the error by finding the file in the library directory and editing it. Then look for a line such as
require XSLoader; XSLoader::load('Error:Casing:Module', $VERSION);
and removing or commenting out these lines. If there are no object dependencies then this may at least get you up and running again.
  • Comment on Re^3: Can't locate loadable object for module X in @INC (@INC contains: ... )
  • Download Code

Replies are listed 'Best First'.
Re^4: Can't locate loadable object for module X in @INC (@INC contains: ... )
by Anonymous Monk on Oct 07, 2015 at 01:22 UTC
    Yeah, that is never the case ... whenever you see XSLoader or DynaLoader, thats where the meat of the module lives, you can't simply comment it out, it makes no sense (the module won't work)