Leser: 1
|< 1 2 3 >| | 26 Einträge, 3 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Removing previously used H:\.cpan\build\libapreq-1.33
CPAN.pm: Going to build S/ST/STAS/libapreq-1.33.tar.gz
Please supply the full path to Apache.exe: F:\APACHE~2\APACHE\Apache.exe
Using "F:/APACHE~2/APACHE/Apache.exe".
skipping test setup... which requires Apache::Test 1.13 or higher
mkdir H:/.cpan/build/libapreq-1.33/blib
mkdir H:/.cpan/build/libapreq-1.33/blib/arch
mkdir H:/.cpan/build/libapreq-1.33/blib/arch/auto
mkdir H:/.cpan/build/libapreq-1.33/blib/arch/auto/libapreq
Cannot find mod_perl.so in C:/MyFiles/modperl/src/modules/win32/Release. Please build mod_perl first at Makefile.PL line 91.
Running make test
Make had some problems, maybe interrupted? Won't test
Running make install
Make had some problems, maybe interrupted? Won't install
cpan>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
local $| = 1;
use strict;
use warnings;
use diagnostics;
use Apache ();
use Apache::Cookie ();
my $r = Apache->request();
my $cookie = Apache::Cookie->new($r,
-name => 'foo',
-value => 'bar',
-expires => '+3M',
-domain => '.capricorn.com',
-path => '/cgi-bin/database',
-secure => 1
);
$cookie->bake;
$r->content_type( "text/html" );
$r->send_http_header();
1;
|< 1 2 3 >| | 26 Einträge, 3 Seiten |