Hello Guys or Gurls,
Here is a small sniplet of the first 6 lines of my CGI file:
#!/usr/bin/perl
#use strict;
#use warnings;
use CGI::Carp qw(fatalsToBrowser);
use lib 'modules';
use conf;
The error that i get is on line 6 this is because the conf.pm does not reside in the #!/usr/bin/perl, but actually resides on:
x:\mydomain.com\config\conf.pm
how do i fix this up ?
Here is a small sniplet of the first 6 lines of my CGI file:
#!/usr/bin/perl
#use strict;
#use warnings;
use CGI::Carp qw(fatalsToBrowser);
use lib 'modules';
use conf;
The error that i get is on line 6 this is because the conf.pm does not reside in the #!/usr/bin/perl, but actually resides on:
x:\mydomain.com\config\conf.pm
how do i fix this up ?