URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID8
Нить номер: 5229
[ Назад ]

Исходное сообщение
"mod_perl"

Отправлено CombatPenguin , 13-Сен-07 18:06 
Server Version: Apache/2.2.3 (Debian) mod_perl/2.0.2 Perl/v5.8.8

Кусок конфига отвечающего за mod_perl:
<IfModule mod_perl.c>
    Alias /test/ /var/www/test/

    #PerlModule Apache::DBI
    <Directory /var/www/test/>
        DirectoryIndex index.pl
        Options -Indexes
        Allow from all
    </Directory>

    <Files ~ "\.(cgi|pl)$">
        SetHandler perl-script
        PerlHandler ModPerl::Registry
        Options +ExecCGI
        PerlSendHeader on
    </Files>

    <Location /perl-status>
        SetHandler perl-script
        PerlHandler Apache2::Status
        Order deny,allow
        Deny from all
        Allow from 192.168.0.1
    </Location>
</IfModule>

В руководстве написано, что директива PerlSendHeader on используется
для формирования корректного http заголовка.

Однако, если я убираю из скрипта print "Content-type: text/plain\r\n\r\n";
то браузер предлагает мне сохранить сам скрипт указывая что он формата text/x-perl

Куда копать?


Содержание

Сообщения в этом обсуждении
"mod_perl"
Отправлено A , 13-Сен-07 18:22 
Не знаю, поможет ли, но
Options +ExecCGI
здесь, мне кажется, ни к чему.
Попробуйте её убрать.

"mod_perl"
Отправлено CombatPenguin , 13-Сен-07 19:17 
>Не знаю, поможет ли, но
>Options +ExecCGI
>здесь, мне кажется, ни к чему.
>Попробуйте её убрать.

Иначе скрипт не будет выполняться.

Options +ExecCGI ordinarily tells Apache that it’s OK for the directory to contain
CGI scripts. In this case, the flag is required by Apache::Registry to confirm
that you really know what you’re doing. Additionally, all scripts located in directories
handled by Apache::Registry must be executable, another check against
wayward non-script files getting left in the directory accidentally. If you omit this
option, the script either will be rendered as plain text or will trigger a Save As
dialog, depending on the client.