Hello All,
I recently upgraded to the following (on a rhel3 box):
Apache/2.0.55
mod_ssl/2.0.55
OpenSSL/0.9.8
DAV/2
mod_apreq2-20050712/2.1.3-dev
mod_perl/2.0.2 Perl/v5.8.0
And now I find myself stuck for hours on what I am convinced is a
no-brainer. Here is what I am trying to do ($r below is of course an
Apache2::RequestRec object):
--start--
my $jar = Apache2::Cookie::Jar->new($r);
$m->out("Jar Status: ". $jar->status() ."<br>");
--end--
In Firefox 1.5, this prints: "Jar Status: Success"
However, in IE 6.0.28, I am getting: "Jar Status: Missing input data"
Other than that, I don't know what to tell you. I have placed some install
information below (how I compiled mod_perl, apache, openssl in case it
helps). I imagine this is an httpd.conf issue, but I have no idea what to
ask or where to go from here. *Any* help is very, very appreciated!
Jason
# openssl
cd openssl-0.9.8a
./config --prefix=/usr/local/ssl/install
--openssldir=/usr/local/ssl/install/openssl
make
make install
# Apache2
tar -zxvf httpd-2.2.0.tar.gz
cd httpd-2.2.0
./configure -with-mpm=worker --enable-modules=all --enable-mods-shared=all
--enable-deflate --enable-ssl --with-ssl=/usr/local/ssl/install/openssl
make
make install
# mod_perl 2
tar -zxvf mod_perl-2.0-current.tar.gz
cd mod_perl-2.0.2
perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs
make
make test
make install
ls -l /usr/local/apache2/modules/mod_perl.so
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]