This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: CGI problems whith latest apache2


Hi Volker,

I get Internal Server Error's when trying to run any CGI script with
latest apache2. Can anybody confirm this ?

Basic cgi (test-cgi) scripts are working for me try this t.pl: [1].
I have not tried to activate my mailing list adminstration interface,
but I think it should work when setting up my alias domains
correctly, at least the login page of the ml interface is displayed.
[...]
[1]:

CGI.pm works for me too:


#!/usr/bin/perl -w
use CGI;                             # load CGI routines
$q = new CGI;                        # create new CGI object
print $q->header,                    # create the HTTP header
      $q->start_html('hello world'), # start the HTML
      $q->h1('hello world'),         # level 1 header
      $q->end_html;                  # end the HTML

# Gerrit

P.S.: Have you checked file / directory permissions?  Under which user
account is httpd running, this user has access too?


-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]