Re: error trapping and notice

2004-04-14 Thread Luiz Fernando B. Ribeiro
Ben, Tuesday, April 13, 2004, 7:28:34 PM, vocĂȘ escreveu: BK> We have quite a few pages using embperl, and sometimes fixing one at the BK> site module (pm) level breaks others, which we won't know until a certain BK> combination of things happen together. BK> We'd like to be notified by email wh

Inheritance in mebperl

2004-04-14 Thread Sreeram_Bazaru
Hello, I have a base.epl in the document root which has header and footer. Inside the document root I have another sub directory. I want to specify a parent for the all files in this sub-directory which in turn should inherit base.epl at the document root. If I put base.epl inside the subdir it

Why doesn't this work?

2004-04-14 Thread wschroed
HI, I have a form that dis.plays different HTML output based on selections from a list of dropdown menus. All but the very last work fine. The code is shown below. I have removed the last if statement and the Execute works. I have dropped the stats.epl into differnet if staements and that works.

Getting more info from segfault

2004-04-14 Thread marco
from the debian unstable distribution, I am using the apache-perl ( version 1.3.29.0.2-4 ) libapache-mod-perl ( version 1.29.0.2-4 ) libembperl-perl ( version 2.0b10-1 ) packages mod-perl works on this server, some old modules I wrote work well out of their directories. However when cal

Re: Getting more info from segfault

2004-04-14 Thread Marco Scoffier
I got a better error: ERR: 56: : Unknown Provider epcompile Thanks, -- Marco On Wed, Apr 14, 2004 at 02:06:24PM -0400, [EMAIL PROTECTED] wrote: > [Wed Apr 14 13:42:11 2004] [notice] child pid 7680 exit signal Segmentation fault > (11) --

[Fwd: Why doesn't this work?]DUH

2004-04-14 Thread wschroed
DUH, if I fail to assign a value to the parameter the page will never know about it. Sorry, I should have gone for coffee sooner. Will Original Message Subject: Why doesn't this work? From:[EMAIL PROTECTED] Date:Wed, April 14, 200

Re: Getting more info from segfault

2004-04-14 Thread Marco Scoffier
On Wed, Apr 14, 2004 at 03:44:03PM -0400, Marco Scoffier wrote: > I got a better error: > > ERR: 56: : Unknown Provider epcompile > Now with strace apache-perl -X I get these bits: open("/usr/lib/perl5/Embperl/Object.pm", O_RDONLY|O_LARGEFILE) = 4 ioctl(4, TCGETS, 0xb1dc)

Re: Getting more info from segfault

2004-04-14 Thread Marco Scoffier
Ok I removed all the debian packages and built Apache, mod_perl and Embperl from source. apache_1.3.29.tar.gz Embperl-2.0b11.tar.gz mod_perl-1.0-current.tar.gz I ran 'make test' and 'make start' in the Embperl directory, and the server seems to work, at http://localhost:8531/eg/web.

Re: Getting more info from segfault

2004-04-14 Thread Marco Scoffier
On Wed, Apr 14, 2004 at 07:19:10PM -0400, Marco Scoffier wrote: > Ok I removed all the debian packages and built Apache, mod_perl and > Embperl from source. > >apache_1.3.29.tar.gz >Embperl-2.0b11.tar.gz >mod_perl-1.0-current.tar.gz > It has come to my attention that I am mixing

Re: Getting more info from segfault

2004-04-14 Thread Marco Scoffier
On Thu, Apr 15, 2004 at 12:35:47AM -0400, Marco Scoffier wrote: > It has come to my attention that I am mixing Embperl2 with Apache1.3 > which doesn't work. I'll try with apache2.0 tommorrow. Sorry about all > the mails :) I guess you have to put the problem out there to see the > obvious mistak

Re: Getting more info from segfault

2004-04-14 Thread Gerald Richter
Marco Scoffier wrote: > On Wed, Apr 14, 2004 at 07:19:10PM -0400, Marco Scoffier wrote: >> Ok I removed all the debian packages and built Apache, mod_perl and >> Embperl from source. >> >>apache_1.3.29.tar.gz >>Embperl-2.0b11.tar.gz >>mod_perl-1.0-current.tar.gz >> > It has come to my a

Re: error trapping and notice

2004-04-14 Thread Gerald Richter
Ben Kim wrote: > We have quite a few pages using embperl, and sometimes fixing one at > the site module (pm) level breaks others, which we won't know until a > certain combination of things happen together. > > We'd like to be notified by email when any embperl related error > happens. > > What is

Re: Inheritance in mebperl

2004-04-14 Thread Gerald Richter
> > Now is there any way that /subdir/page1.epl and /subdir/page2.epl > should inherit /subdir/base.epl and /subdir/base.epl in turn should > inherit from /base.epl..? In subdir/base.epl put a [! Execute ({isa => ../base.epl}) !] Gerald --