|< 1 2 >| | 12 Einträge, 2 Seiten |
1
2
my $Cookie = Apache::Cookie->new( $r, -value => $CookieHash, -name => 'Project LAN Benutzer', -expires => '+3M', -domain => '.project-lan.bhaal', -path => '/', -secure => 0);
$Cookie->bake();
Quote(außer der Umstieg auf CGI::Cookie)?
Quote$r->send_cgi_header()
Take action on certain headers including Status:, Location: and Content-type: just as mod_cgi does, then calls $r->send_http_header(). Example of use:
$r->send_cgi_header(<<EOT);
Location: /foo/bar
Content-type: text/html
EOT
1
2
-expires => '+1D' # + 1 Tag --> Müll
-expires => 'Mon, 11-Jul-2005 01:00:00 GMT' # ok!
QuoteSicherlich, mit err_header_out, da war ich wohl vorhin unaufmerksam *schnarch*
QuoteHab Randy Kobes vorhin angemailt, mal sehen, was er sagt.
|< 1 2 >| | 12 Einträge, 2 Seiten |