Joshua Slive wrote:
On 7/28/06, Eike Frost <[EMAIL PROTECTED]> wrote:
Hi,
On Friday 28 July 2006 21:42, Jose Adriano Baltieri wrote:
> I have a tiny CGI program written in C that's like this :
(...)
> HTTP/1.1 302 Found
> Location: http://www.unimep.br
>
> However, when I run it from the browse
On Friday 28 July 2006 21:34, Joshua Slive wrote:
> > Rename the CGI script to nph-something -- this will tell mod_cgi to treat
> > the script as one with non-parseable headers (and subsequently leaves the
> > response code alone to do with as you wish).
Whilst feasible, that's fragile and requir
On 7/28/06, Eike Frost <[EMAIL PROTECTED]> wrote:
Hi,
On Friday 28 July 2006 21:42, Jose Adriano Baltieri wrote:
> I have a tiny CGI program written in C that's like this :
(...)
> HTTP/1.1 302 Found
> Location: http://www.unimep.br
>
> However, when I run it from the browser I'll receive an "In
>
> I have a tiny CGI program written in C that's like this :
>
> # include
> main()
> {
> printf("HTTP/1.1 302 Found\n");
> printf("Location: http://www.unimep.br\n\n";);
> }
>
> Running it at the prompt, it will print of course :
>
> HTTP/1.1 302 Found
> Location: http://www.unimep.b
Hi,
On Friday 28 July 2006 21:42, Jose Adriano Baltieri wrote:
> I have a tiny CGI program written in C that's like this :
(...)
> HTTP/1.1 302 Found
> Location: http://www.unimep.br
>
> However, when I run it from the browser I'll receive an "Internal Server
> Error".
Rename the CGI script to np
I have a tiny CGI program written in C that's like this :
# include
main()
{
printf("HTTP/1.1 302 Found\n");
printf("Location: http://www.unimep.br\n\n";);
}
Running it at the prompt, it will print of course :
HTTP/1.1 302 Found
Location: http://www.unimep.br
However, when I run it fro