David Hinckle wrote:

> I'm at my wits end here and could use some help... If I change:
>
> use CGI;
> to
> CGI::Carp qw(fatalsToBrowser);

I don't know why you would do this. These are separate, unlreated modules and
the syntax of the second one appears to be incorrect.


> I at least get this clue as to what's going on (or not)" but it doesn't
> help *ME* at all. Could someone clue me in???
>
> "Can't locate object method "new" via package "CGI" at
> J:\Inetpub\clients\onlinecardealer.com\www\cgi-bin\anlgform.pl line 38."

Perl is telling you that it doesn't know how to create a CGI object because
you have removed the definition.

I suspect what you meant to say was something like

use CGI;
use CGI::Carp qw( fatalsToBrowser );

But on IIS, all messages go to the browser anyway and anlgform.pl doesn't use
Carp, so you shouldn't have to have made that change.

For more information try `perldoc perltoot`.

HTH,

Jeremy Wadsack
Wadsack-Allen Digital Group


------------------------------------------------------------------------
This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/[email protected]/
------------------------------------------------------------------------

Reply via email to