mod_perl/freebsd

2003-07-22 Thread Andy Harrison
. Anyone know what to do? ~~ Andy Harrison Great Works Internet System Operations (full headers for details) -BEGIN PGP SIGNATURE- Version: PGP 6.5.8 iQCUAwUBPx1FNFPEkLgodAWVAQFR7wP4u6m6l6qGwN8XK29riuyZiMCx72k88H/c pqvIZFHIhl8MMIlj1Rsh7bjfMitgSAQT6psFvWCnNjJJAkLL5P+p6GSxGhLsATJC 9BgTfdaPycpk

Re: mod_perl/freebsd

2003-07-22 Thread Andy Harrison
it. ~~ Andy Harrison Great Works Internet System Operations (full headers for details) -BEGIN PGP SIGNATURE- Version: PGP 6.5.8 iQCVAwUBPx1jklPEkLgodAWVAQHu8wQAphPErffZC7yTpwGjYy48l1P6wPk+hzHe 6W9cPggLzNWY6tDPGf7kBXWSxeLAjG0YhrL03QmQXTJY805J/qTUwUdyUYCcXs4z S8sNajWWT79KIoPl3NvLvRoFHI

Re: mod_perl/freebsd

2003-07-22 Thread Andy Harrison
in place the make.conf updates that it suggests. ~~ Andy Harrison Great Works Internet System Operations (full headers for details) -BEGIN PGP SIGNATURE- Version: PGP 6.5.8 iQCVAwUBPx1qx1PEkLgodAWVAQGlqgQAuX/Bt5BH6j4lW7BA8TFJwkWvNJD5uOQt 9jZLEy+mLmBm+O3mN7UFpqW5ad0

mod_perl and perl version

2003-07-17 Thread Andy Harrison
to a specific vhost? There's a series of perl scripts in a different vhost than rt that are written for an older version of perl and I don't want them to be affected by the mod_perl installation. ~~ Andy Harrison Great Works Internet System Operations (full headers for details) -BEGIN PGP

Re: mod_perl and perl version

2003-07-17 Thread Andy Harrison
PerlHandler RT::Mason /Location Will they be the only vhost to use mod perl? The other vhosts simply have Directory directives with ExecCGI turned on. ~~ Andy Harrison -BEGIN PGP SIGNATURE- Version: PGP 6.5.8 iQCVAwUBPxbnvFPEkLgodAWVAQFtNgP9GSDfzRKqk4nFOVQXcw0AIWeOxQSJrHcK S1

Send a cookie, AND a redirect ?

2001-02-08 Thread Harrison
'=$the_url); $r-header_out('Set-Cookie' =$cookie); $r-send_http_header; return REDIRECT; Which does not work. Thinking about it whilst typing this email, does header_out have a field where i can set the REDIRECT status? Thanks in advance, Richard Harrison.

Re: Send a cookie, AND a redirect ? [resolved]

2001-02-08 Thread Harrison
Using err_header_out worked :) $r-content_type('text/html'); $r-err_header_out('Set-Cookie' = $cookie); $r-err_header_out('Location' = $the_url); return REDIRECT;