Attempt to free unreferenced scalar ...

2001-06-01 Thread [EMAIL PROTECTED]
I am frequently getting this message in my error log: Attempt to free unreferenced scalar during global destruction. I have been unable to trace it down to any one particular handler. It seems to be happening, as the message suggests, when a child exits. Is this a familiar message? Is there any

Attempt to free unreferenced scalar

2000-11-26 Thread Bob Stewart
I've looked in the archives and seen lots of references to this problem, but no cure. I'm trying to run a test script (below) in mod_perl. The script runs as it should, BUT if I do a graceful reboot of the httpd, this message, "Attempt to free unreferenced scalar.", starts showin

FYI: Attempt to free unreferenced scalar

2000-11-26 Thread Bob Stewart
I just this morning posted a query about this error showing up in my httpd error_log file after doing a graceful restart on a server running RedHat. Someone replied via email that it was probably do to a problem Apache has in killing off children after the restart, particularly on RedHat

Re: Attempt to free unreferenced scalar

2000-11-26 Thread Tim Kearney
So it would seem this error is probably just a manifestation of a more general problem with Apache restarts on RedHat. I hope this saves someone else a little time. No, we've had this issue in our UNIX environment as well. Never figured out what was causing it either, so we just trap for

Re: Strange error in log: Attempt to free unreferenced scalar.

2000-08-14 Thread remco
On Fri, 11 Aug 2000, Wesley Darlington wrote: Hi, Attempt to free unreferenced scalar. Yeah, we get those too. I don't know what they are either. *grin* Running without perlfreshrestart/graceful-restarts seems to help, but this cure is worse than the disease - we just put up

Re: Strange error in log: Attempt to free unreferenced scalar.

2000-08-14 Thread Vladimir Buyanov
://www.aport.ru http://www.agama.com - Original Message - From: [EMAIL PROTECTED] To: Wesley Darlington [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, August 14, 2000 1:07 PM Subject: Re: Strange error in log: Attempt to free unreferenced scalar. On Fri, 11 Aug 2000, Wesley Darlington wrote

Re: Strange error in log: Attempt to free unreferenced scalar.

2000-08-14 Thread Wesley Darlington
Hi, On Mon, Aug 14, 2000 at 01:29:53PM +0400, Vladimir Buyanov wrote: We don't use Apache::AuthDBI module, but use: No, we don't use it either... use Mysql; use HTML::Template; use CGI; use Mail::Mailer; use Time::Local; use Time::localtime; use Net::SMTP; use MIME::Base64; use

Re: Strange error in log: Attempt to free unreferenced scalar.

2000-08-14 Thread Wesley Darlington
Hi, Doh! Forgot attachment. :-( Wesley. On Mon, Aug 14, 2000 at 11:35:53AM +0100, Wesley Darlington wrote: Hi, On Mon, Aug 14, 2000 at 01:29:53PM +0400, Vladimir Buyanov wrote: We don't use Apache::AuthDBI module, but use: No, we don't use it either... use Mysql; use

Strange error in log: Attempt to free unreferenced scalar.

2000-08-11 Thread Vladimir Buyanov
my browser and see "Proxy Error". When I stop Load Emulator, such situation continue in about a 5-10 minutes, then httpd.modperl processes begin to die. During this mysqld eats about 5-10% CPU and 140M RAM. I see strange error in httpd.modperl error log : Attempt to free unreferenced sca

Re: Strange error in log: Attempt to free unreferenced scalar.

2000-08-11 Thread Wesley Darlington
ned to blame any sql in there - find which queries are taking too much time and tune them. This is probably best discussed on a MySQL list, though... :-) Attempt to free unreferenced scalar. Yeah, we get those too. I don't know what they are either. *grin* Running without perlfreshrestart/graceful-re

Attempt to free unreferenced scalar

2000-04-03 Thread Bill Moseley
This message shows its ugly head now and then. I'm not sure what happens but every once in a while after sending a SIGUSR1 or SIGHUP the "Attempt to free unreferenced scalar" messages start to fill up the error_log. The only way to stop them is to really SIGTERM the server and th

Re: Attempt to free unreferenced scalar

2000-04-03 Thread Cliff Rayman
the "Attempt to free unreferenced scalar" messages start to fill up the error_log. The only way to stop them is to really SIGTERM the server and then restart it. I'm only assuming that this is mod_perl related. The archives mentioned that this is probably caused by some problem in a

Re: Attempt to free unreferenced scalar during global destruction.

2000-01-18 Thread Doug MacEachern
On Thu, 4 Nov 1999, Andrei A. Voropaev wrote: Hi! For some reason I get lots of 'Attempt to free unreferenced scalar during global destruction.' in my error log. Any one can give me a pointer where to search for the problem? it's most likely due to a buggy xs module. that message

Re: Attempt to free unreferenced scalar (again)

2000-01-05 Thread Pete Jordan
Matt Sergeant wrote: Hmm.. maybe you have an original 5.005 (and no patchlevel) then. I seriously recommend a perl upgrade. There were bugs there that have since been fixed, and some of those may lead to your error. Happens here on Perl 5.005_03, Apache 1.3.6, mod_perl 1.21 all built locally

Attempt to free unreferenced scalar (again)

2000-01-04 Thread Bill Moseley
I looked at the archive, and noticed Doug's patch in perl_conf.c: http://www.geocrawler.com/archives/3/182/1999/7/0/2414262/ -hv_store(nhv, (char*)key, klen, rv, FALSE); +hv_store(nhv, (char*)key, klen, SvREFCNT_inc(rv), FALSE); As far as I can tell (from finding perl_conf.c

Re: Attempt to free unreferenced scalar (again)

2000-01-04 Thread Matt Sergeant
On Tue, 04 Jan 2000, Bill Moseley wrote: I looked at the archive, and noticed Doug's patch in perl_conf.c: http://www.geocrawler.com/archives/3/182/1999/7/0/2414262/ -hv_store(nhv, (char*)key, klen, rv, FALSE); +hv_store(nhv, (char*)key, klen, SvREFCNT_inc(rv), FALSE);

Re: Attempt to free unreferenced scalar (again)

2000-01-04 Thread Bill Moseley
At 04:47 PM 1/4/00 +, Matt Sergeant wrote: As far as I can tell (from finding perl_conf.c on this machine) it already has this patch. Running Apache 1.3.9 and, I think*, mod_perl-1.21. Perl is 5.005 and Sun 2.6. I'm not running Apache::StatINC, but PerlFreshRestart ^ That is

Re: Attempt to free unreferenced scalar (again)

2000-01-04 Thread Bill Moseley
Here's perl -V (Sorry Matt for emailing you directly. I wish the list used a Reply-To: to the list so replying wouldn't default to the individual.) 115) ~/apache %/usr/local/bin/perl5.005 -V Summary of my perl5 (5.0 patchlevel 5 subversion 0) configuration: Platform: osname=solaris,

Re: Attempt to free unreferenced scalar during global destruction.

1999-01-03 Thread Andrei A. Voropaev
from perl 5.004_04 to 5.005_03. Am I correct? Thank you. Andrei On Thu, Nov 04, 1999 at 03:55:20PM -0500, Andrei A. Voropaev wrote: Hi! For some reason I get lots of 'Attempt to free unreferenced scalar during global destruction.' in my error log. Any one can give me a pointer where