in reply to Could Spawn Child Process

The first line of your script merely points to what is going to drive your script. On windows boxes, I understand that this line is not needed. If you can find your program through your path, that's all you need.

That said, though, you can and should include the line so that you can enable switches with it, '-w', for example, or '-Tw', etc. If you don't 'use warnings;' in your script, then you should indeed use the warn switch '-w' on your shebang line.

So your error? Something else. Start a new question with your error and include your script, or at least the part of your script that you think might cause the error.

As much as I don't like referring people away, you might like to check this great troubleshoot of 500 errors:

http://www.users.f2s.com/faq/error500.php3

Dave

Replies are listed 'Best First'.
Re: Re: Could Spawn Child Process
by IlyaM (Parson) on Dec 29, 2001 at 06:47 UTC
    On windows boxes, I understand that this line is not needed.

    It is not needed if you run script as usual program on windows. In this case file associations come to play. However if you run script as CGI using Apache normally Apache emulates UNIX behaviour. Apache ignores file associations and reads shebang line to find script interpretator. BTW if I recall correctly Win32 Apache has an option which is off by default. That option forces Apache to use file associations and ignore shebang line.

    --
    Ilya Martynov (http://martynov.org/)

    A reply falls below the community's threshold of quality. You may see it by logging in.