in reply to Re^2: cgi and own modules causing unspecified error
in thread cgi and own modules causing unspecified error
Hey amitsq, the following is incorrect:
use lib 'S:\incubator\ex\Hello.pm';
You add the *path* to the use lib pragma, not the file:
use lib 'S:\incubator\ex';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: cgi and own modules causing unspecified error
by marto (Cardinal) on Jun 08, 2017 at 14:48 UTC | |
|
Re^4: cgi and own modules causing unspecified error
by amitsq (Beadle) on Jun 08, 2017 at 14:51 UTC |