Re: Same Internal Server Error from last two days

2006-07-28 Thread Dennis G. Wicks
On Fri, 28 Jul 2006, Dr.Ruud wrote: > "Dennis G. Wicks" schreef: > > > Apache requires the shebang line for cgi > > scripts and it must point to perl. > > Unless you tell Apache to not look at the shebang. > > Open your httpd.conf file and uncomment the line that reads > ScriptInterpreterSource r

Re: Same Internal Server Error from last two days

2006-07-28 Thread Dr.Ruud
"Dennis G. Wicks" schreef: > Apache requires the shebang line for cgi > scripts and it must point to perl. Unless you tell Apache to not look at the shebang. Open your httpd.conf file and uncomment the line that reads ScriptInterpreterSource registry You are now free to include *nix style sheba

Re: Same Internal Server Error from last two days

2006-07-28 Thread Mumia W.
On 07/28/2006 06:46 AM, Nath, Alok (STSD) wrote: From: Ranish George [EMAIL PROTECTED] Hi Alok, Have you tried changing the shebang line as I have mentioned in one of the follow up. Trying changing the shebang to #!C:\Perl\bin\perl -Ranish George Ramnish, I have tried that.

Re: Same Internal Server Error from last two days

2006-07-28 Thread Dennis G. Wicks
On Fri, 28 Jul 2006, Dr.Ruud wrote: > Date: Fri, 28 Jul 2006 14:13:48 +0200 > From: Dr.Ruud <[EMAIL PROTECTED]> > To: beginners@perl.org > Subject: Re: Same Internal Server Error from last two days > > Ranish George schreef: > > > > Have you tried changing

RE: Same Internal Server Error from last two days

2006-07-28 Thread Nath, Alok (STSD)
No the script is in C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin. -Original Message- From: Beginner [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 6:01 PM To: beginners@perl.org Subject: Re: Same Internal Server Error from last two days On 28 Jul 2006 at 14:13

Re: Same Internal Server Error from last two days

2006-07-28 Thread Beginner
On 28 Jul 2006 at 14:13, Dr.Ruud wrote: > Ranish George schreef: > > > > Have you tried changing the shebang line as I have mentioned in > > one of the follow up. Trying changing the shebang to > > > > #!C:\Perl\bin\perl > > That should not make any difference. Windows doesn't use the shebang;

Re: Same Internal Server Error from last two days

2006-07-28 Thread Dr.Ruud
Ranish George schreef: > Have you tried changing the shebang line as I have mentioned in > one of the follow up. Trying changing the shebang to > > #!C:\Perl\bin\perl That should not make any difference. Windows doesn't use the shebang; perl reads it but is only interested in parameters (like -T

RE: Same Internal Server Error from last two days

2006-07-28 Thread Nath, Alok (STSD)
Ramnish, I have tried that.No success ... Thanks, Alok. -Original Message- From: Ranish George [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 5:10 PM To: Nath, Alok (STSD) Cc: Mumia W.; Beginners List Subject: Re: Same Internal Server Error from last two days Nath

Re: Same Internal Server Error from last two days

2006-07-28 Thread Ranish George
annot find the path specified. : couldn't spawn child process: C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/first.pl -Original Message- From: Mumia W. [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 2:35 PM To: Beginners List Subject: Re: Same Internal Server

RE: Same Internal Server Error from last two days

2006-07-28 Thread Nath, Alok (STSD)
ified. : couldn't spawn child process: C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/first.pl -Original Message- From: Mumia W. [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 2:35 PM To: Beginners List Subject: Re: Same Internal Server Error from last two days On

Re: Same Internal Server Error from last two days

2006-07-28 Thread Mumia W.
On 07/28/2006 02:25 AM, Nath, Alok (STSD) wrote: Ramnish, Here's my Hello World Cgi script which I am trying to run #!/usr/bin/perl print "Content-type: text/html\n\n"; print "Hello, World."; It has no problem. [...] When apache encounters an error, it records it in its error.log. What

Re: Same Internal Server Error from last two days

2006-07-28 Thread Ranish George
PROTECTED] Sent: Friday, July 28, 2006 12:45 PM To: Nath, Alok (STSD) Cc: beginners@perl.org Subject: Re: Same Internal Server Error from last two days Nath, Alok (STSD) wrote: Hi , It's not exactly a perl query but related to it. I am trying to run a Hello World Perl Scri

Re: Same Internal Server Error from last two days

2006-07-28 Thread Ranish George
Nath, Alok (STSD) wrote: Hi , It's not exactly a perl query but related to it. I am trying to run a Hello World Perl Script in Apache 2.2. My script is installed in location : C:\Program Files\Apache Software Foundation\Apache2.2\bin Perl is installed in : C:\Perl\bin But its constantl

RE: Same Internal Server Error from last two days

2006-07-28 Thread Nath, Alok (STSD)
July 28, 2006 12:45 PM To: Nath, Alok (STSD) Cc: beginners@perl.org Subject: Re: Same Internal Server Error from last two days Nath, Alok (STSD) wrote: > Hi , > It's not exactly a perl query but related to it. > > I am trying to run a Hello World Perl Script in Apache 2.2.

Same Internal Server Error from last two days

2006-07-27 Thread Nath, Alok (STSD)
Hi , It's not exactly a perl query but related to it. I am trying to run a Hello World Perl Script in Apache 2.2. My script is installed in location : C:\Program Files\Apache Software Foundation\Apache2.2\bin Perl is installed in : C:\Perl\bin But its constantly giving me Internal Server

RE: Internal Server Error

2005-07-05 Thread Charles K. Clarkson
Ron Smith wrote: : -snip-2--- : : Following is the code to the CGI script: : : #!//perl/bin/perl.exe -wT This shebang line is in the directory while the next shebang is in the www directory. BTW, the "

Re: Internal Server Error

2005-07-05 Thread Chris Devers
On Tue, 5 Jul 2005, Ron Smith wrote: Hi all, I'm running: 'http://localhost/html/inputForm.html' which takes a first name and last name, and submits them to 'http://localhost/cgi-bin/query_string.cgi I get [Internal Server Error] This is just a generic failure messa

Internal Server Error

2005-07-05 Thread Ron Smith
Hi all, I'm running: 'http://localhost/html/inputForm.html' which takes a first name and last name, and submits them to 'http://localhost/cgi-bin/query_string.cgi I get a the following error: -snip-1------- Internal Ser

Re: Internal server error

2005-02-08 Thread Flemming Greve Skovengaard
vishwas bhakit wrote: hello I am running cgi script from browser n getting Internal server error. When i checked logs it is giving following error: BEGIN failed--compilation aborted at /path/to/file/file.cgi line 4. what may be the cause of this can you plz help me. Thnx in advance Yahoo

Re: Internal server error

2005-02-08 Thread Chris Devers
On Tue, 8 Feb 2005, vishwas bhakit wrote: > I am running cgi script from browser [and] getting > Internal server error. > > When i checked logs it is giving following error: > BEGIN failed--compilation aborted at /path/to/file/file.cgi line 4. > > what may be the ca

Internal server error

2005-02-08 Thread vishwas bhakit
hello I am running cgi script from browser n getting Internal server error. When i checked logs it is giving following error: BEGIN failed--compilation aborted at /path/to/file/file.cgi line 4. what may be the cause of this can you plz help me. Thnx in advance Yahoo! India Matrimony

Internal server error

2005-02-08 Thread vishwas bhakit
hello I am running cgi script from browser n getting Internal server error. When i checked logs it is giving following error: BEGIN failed--compilation aborted at /path/to/file/file.cgi line 4. what may be the cause of this can you plz help me. Thnx in advance Yahoo! India Matrimony

Re: internal server error

2003-03-18 Thread Rob Dixon
R. Joseph Newton wrote: > Rob Dixon wrote: > > > Robbie Staufer wrote: > > > Hi, > > > > > > I'm getting an internal server error.> > > least closed > > > > Hi. > > > > This is more than likely a permissions problem. Try

Re: internal server error

2003-03-17 Thread R. Joseph Newton
Rob Dixon wrote: > Robbie Staufer wrote: > > Hi, > > > > I have a partial perl script for a mock-up web page, that will collect > > information from users as part of a registration form. In trying to > > see what it looks like so far on the web, I'm ge

Re: internal server error

2003-03-17 Thread Rob Dixon
Robbie Staufer wrote: > Hi, > > I have a partial perl script for a mock-up web page, that will collect > information from users as part of a registration form. In trying to > see what it looks like so far on the web, I'm getting an internal > server error. I thought

Re: internal server error

2003-03-17 Thread Brett W. McCoy
On Mon, 17 Mar 2003, Robbie Staufer wrote: > I have a partial perl script for a mock-up web page, that will collect > information from users as part of a registration form. In trying to see > what it looks like so far on the web, I'm getting an internal server > error. I though

internal server error

2003-03-17 Thread Robbie Staufer
Hi, I have a partial perl script for a mock-up web page, that will collect information from users as part of a registration form. In trying to see what it looks like so far on the web, I'm getting an internal server error. I thought that the script, though partial, was at least closed

RE: Internal server error

2002-04-05 Thread Shaun
Hi Adam, > I'm having problems with the old "Internal Server Error" issue. I > know that this is generally due to permissions. I have used chmod go+rx -R *, but no > joy. The html now works but not the cgi. Thoughts? You need to declare a ScriptAlias directive for the &q

Re: Internal Server Error

2001-08-01 Thread .
> Do you have other Perl cgi scripts successfully running on the same server? Not as yet... > Are they using the same shebang path as this script? (It's the first line of > the script #!/usr/bin/perl). I have confirmed that the path is correct. > Does the script have it's permissions set to ex

RE: Internal Server Error

2001-08-01 Thread John Edwards
er returns? Have you checked the error log files of the server... John -Original Message- From: . [mailto:[EMAIL PROTECTED]] Sent: 01 August 2001 11:53 To: [EMAIL PROTECTED] Subject: Internal Server Error When I try to access the attached script from my server's cgi-bin directory v

Internal Server Error

2001-08-01 Thread .
When I try to access the attached script from my server's cgi-bin directory via the web, the browser returns an internal server error message. I am running it on a RedHat Linux 7.0 box, with Apache 1.3.12. I have already checked the directory/file permissions, and confirmed that both per

RE: Dreaded Internal Server Error

2001-07-17 Thread Brian
Again, should I stick it into the script I > want to debug? > > Rob > > -Original Message- > From: Brian [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 17, 2001 10:40 PM > To: [EMAIL PROTECTED] > Subject: RE: Dreaded Internal Server Error > > > First off, I

RE: Dreaded Internal Server Error

2001-07-17 Thread Brian
ome mysterious problems. First of I'll, I > should tell you > that the error I get is the dreaded "Internal Server Error" > message. I've > also looked in the logs, and they're further explicated as follows: > > [Tue Jul 17 00:42:16 2001] [error] (2)No su

Re: Regarding Internal Server Error

2001-07-16 Thread Jos I. Boumans
t;Rahul Garg" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 11:12 AM Subject: Re: Regarding Internal Server Error > If it's giving an internal server error, it is more than likely that > there > actually *is* some problem with the script, no mat

RE: Regarding Internal Server Error

2001-07-16 Thread Brian
Try sending fatals to the browser using the following: use CGI::Carp 'fatalsToBrowser'; I've seen a few times where this wouldn't work (for some stupid server reason) so you can also try the following: BEGIN { open STDERR, ">&STDOUT"; $oldfh = select STDOUT; $|=1; select STDERR; $|=1; sel

Re: Regarding Internal Server Error

2001-07-16 Thread David Wood
If it's giving an internal server error, it is more than likely that there actually *is* some problem with the script, no matter how much you think they're can't be (I've been in the same situation many a time!) If you've got access to the error logs, have a look

Regarding Internal Server Error

2001-07-15 Thread Rahul Garg
Hello Everybody.. What i have done is placed a .cgi file in cgi-bin directory of web server. from here i am calling on submission search_results is also placed oin cgi-bin dir. of same server. But it is giving Internal server error.i have not done much in search_results.cgi so