[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] CGI WRAP Error? * Correction



> >Unless you made a typo, that should be:
> >
> >#!/usr/bin/perl
> >
> >Remeber: Pound (#), Bang (!)/path/to/perl
>
> Yes, I missed that part when I clipped it.
>
> I do have: #!/usr/bin/perl
>
> I even tried:
> #!/.../perl --
>
> Doesn't work.

Did you try

#!/usr/bin/perl --

Or follow the instructions literally and use "#!/.../perl --" ?

The first line of a Perl/CGI script (or just about any other standalone
script for that matter) should be the location of the interpreter.

BC