in reply to Re: Using eval: $@ isn't returning the error I expect
in thread [SOLVED] Using eval: $@ isn't returning the error I expect

Hi haj,

Thanks for the reply!

>>I'd just add my own dummy cPanelUserConfig somewhere into my include path

How would I go about doing that?

  • Comment on Re^2: Using eval: $@ isn't returning the error I expect

Replies are listed 'Best First'.
Re^3: Using eval: $@ isn't returning the error I expect
by syphilis (Archbishop) on Feb 20, 2020 at 00:08 UTC
    Just create a file named cPanelUserConfig.pm that contains a single line of:
    1;
    Place that file in one of the @INC directories.
    You can get a list of those directories by running:
    perl -le "print for @INC;"
    Cheers,
    Rob
      Thanks!