> -----Original Message----- > From: Ricardas Cepas [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 08, 2001 2:08 PM > To: [EMAIL PROTECTED] > Subject: Apache::GzipChain & Apache::OutputChain > > > Hi! > > What does this error messsage mean? > untie attempted while 1 inner references still exist at > /usr/local/lib/perl5/site_perl/5.6.1/Apache/OutputChain.pm line 28. it means what it says :) if OutputChain works like Apache::Filter at all, then it needs the reference to maintain an accurate handler count, so you can safely igore the warning. I haven't looked at the code, though. > Mozilla shows empty screen. I have in httpd.conf: > <Location /scripts> > SetHandler perl-script > PerlHandler Apache::OutputChain Apache::GzipChain My::Site > </Location> you would be better off moving to Apache::Filter and Apache::Compress, both of which are well developed and maintained... I think the general opinion is that OutputChain and GzipChain are becoming more deprecated by the day... --Geoff