On Fri, 19 Jun 1998, Artem Chuprina wrote:
> (плюс можно и убрать, никаких изменений).
> /perl/test:
> #!/usr/bin/perl
> use strict;
> print "Content-type: text/html\n\n";
> print "<html><head></head><body>This is a test</body></html>\n";
>
> /cgi-bin/test идентичен.
>
>
>
> 16:45:04.ran.ttyp5?1> telnet www.pirit.com 80
> Trying 194.186.208.161...
> Connected to www.pirit.com.
> Escape character is '^]'.
> GET /perl/test HTTP/1.0
>
> Content-type: text/html
>
> <html><head></head><body>This is a test</body></html>
> Connection closed by foreign host.
>
> Соответственно, при исполнении /perl/test Content-type: text/html попадает
> в текст, перекодировка отсутствует. Где руки точить?
Я в свое время так и обломался с этим эффектом. Не получается
из registry печатать headlines руками. А вот так:
use CGI;
use strict;
my $query=new CGI;
print $query->header('text/html');
print "<html><head></head><body>This is a test</body></html>\n";
Почему-то все работает. До тех пор пока не включишь PerlSendHeaders on
А если его не включать, отваливается charset.
Можно сказать
print $query->header('text/html; charser=$ENV{'CHARSET'}');
но тогда отваливается BadAgents
print
>
> ________________________________________________________________
> Artem Chuprina Артем Чуприна
> PIRIT Corp. АО "Пирит"
> E-mail: ran@pirit.com Э-почта: ran@pirit.com
> Phone: +7(095) 115-7101 Телефон: +7(095) 115-7101
>
--------------------------------------------------
Victor Wagner vitus@fe.msk.ru
Institute for Commerce Office:7-(095)-333-2022
Engineering Home: 7-(095)-135-46-61
Programmer http://www.fe.msk.ru/~vitus
"Russian Apache" includes software developed
by the Apache Group for use in the Apache HTTP server project
(http://www.apache.org/) See
Apache LICENSE.
Copyright (C) 1995-2001 The Apache Group. All rights reserved.
Copyright (C) 1996 Dm. Kryukov; Copyright (C)
1997-2009 Alex Tutubalin. Design (C) 1998 Max Smolev.