Alex,
It just appears that you have encountered a problem that
nobody ever seems to get. You also have not sent in your
config file. However, I fear that it will be nearly impossible to
debug anyway. I have a script you could use to grab it (in easy
to read form).
If you post that, at least we will have some more info, but I think that
you will probably have to reinstall something or adjust something,
although it is hard to figure out exactly what you did other than
switch versions.
# Place this at the end of the startup script (the very very end):
#
# Write Config if Errors Exist
#
set ErrorText "debug"
set ErrorFile /tmp/aolerrors.txt
if {![string eq "" "$ErrorText"]} {
set configDebug 1
}
if {[info exists configDebug] && $configDebug} {
set sections [ns_configsections]
set output [list]
foreach section $sections {
set name [ns_set name $section]
set section_txt ""
append section_txt "ns_section $name\n"
set size [ns_set size $section]
for {set i 0} {$i < $size} {incr i} {
append section_txt "\t[list ns_param [ns_set key $section $i]
[ns_set value $section $i]]\n"
}
lappend output $section_txt
}
set output "[join [lsort $output] "\n"]\n"
puts "\n$output\n"
}
if {![string eq "" "$ErrorText"]} {
set ErrorFd [open $ErrorFile w+]
puts $ErrorFd $ErrorText
puts $ErrorFd $output
close $ErrorFd
}
### Finished #######
On Monday 19 February 2007 15:21, Alex wrote:
> Yes, I know, thanks. I am having other troubles with it, too ....
>
> So, Any ideas about the memory leak tracing?
>
> Thanks,
> ~ Alex.
>
> On 2/16/07, Juan José del Río <[EMAIL PROTECTED]> wrote:
> > El Thu, 15 Feb 2007 14:47:00 -0500 , Alex <[EMAIL PROTECTED]> escribió:
> > > Besides, 4.5 CVS which comes with tcl 8.4.14, do not have this issue
> > > apparently, but I had other troubles with it before (eg segfaults on
> > > ns_returnredirect) so I am not sure if it's save to move production
> > > server 4.0.10 -> 4.5 for now.
> >
> > Hi Alex,
> >
> > That redirection bug is known and is fixed in the CVS version :)
> >
> > Regards,
> >
> > --
> > Juan José del Río
> > Simple Option
> > Tlf: 0034 616512340
> > Fax: 0034 952792455
> > [EMAIL PROTECTED]
> > http://www.simpleoption.com
> >
> >
> > --
> > AOLserver - http://www.aolserver.com/
> >
> > To Remove yourself from this list, simply send an email to
> > <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the
> > email message. You can leave the Subject: field of your email blank.
>
> --
> AOLserver - http://www.aolserver.com/
>
> To Remove yourself from this list, simply send an email to
> <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the
> email message. You can leave the Subject: field of your email blank.
--
AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]>
with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject:
field of your email blank.