large projects in mod_perl

2002-08-26 Thread zt.zamosc.tpsa.pl
Hi all Does anyone know where I can find some information on creating big projects in Perl (mod_perl)? I am facing the really big project now but I don't know what stucture of the program will be the best. There are such things like Struts, jBoss in Java. What about Perl? Thank you in advance.

Re: compilation problems in mod_perl

2002-08-26 Thread Stas Bekman
Amir wrote: > Hello, > I am trying to compile mod_perl in my Redhat Linux 7.2. > I run perl 5.8.0, > > when I do "perl Makefile.PL MP_AP_PREFIX=/usr/local/apache2" > Its looks fine (I get no errors) > but then when I try to do "make" > I get the following: > - > cd "sr

Re: Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread Stas Bekman
Alex Lee wrote: > There seems to be conflict between mod_php 4.2.2 and mod_perl 1.27 > running with Apache 1.3.26 on Solaris 8 platform(FreeBSD with the same > configuration seems to work fine). [...] > Segmentation Fault (11) [...] > running with "truss ./httpd -X" produce: Sending the core ba

Re: Apache::Reload -- can't locate main.pm?

2002-08-26 Thread Stas Bekman
Ken Miller wrote: > I've been successfully using Apache::Reload for a few weeks now. However, I > installed it on my home development system, and I'm getting this error when > accessing a module that contains 'use Apache::Reload': > > [Mon Aug 26 09:59:12 2002] [error] Can't locate main.pm in @I

Re: Clashing Apache::Symbol - Symbol ?

2002-08-26 Thread Stas Bekman
ODELL, TODD E (SWBT) wrote: > I just recently got my mod_perl to work. Config is > mod_perl-1.27/Apache-1.3.26 on AIX 4.3.3. > > I wrote a PerlAuthenHandler which uses Expect.pm, requiring the normal > Symbol.pm. In my startup.pl script for mod_perl I had this line: > use lib qw(/usr/opt/perl5/li

RE: [OT] HTML to XHTML conversion

2002-08-26 Thread Narins, Josh
Reviewing the "What is different between HTML and XHTML?" we have All tags must close or be single tags like Tag names are case sensitive All attributes must be name="value" (double quotes required, no more multiple,checked,selected) And all tags must nest properly XHTML also has rules abou

Mason script not running

2002-08-26 Thread Ufuk Yuzereroglu
Hi,   I have a Redhat 7.3 box running apache with mod_ssl and mod_perl. I configured the server to run on SSL. I have a very simple script as follows for Mason module:   <& /PublicPages/WebComponents/small_dialog, data =">" $m->scomp('/PublicPages/WebComponents/main_menu'), title => 'Please

Re: Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread Alex Lee
Hmm. That's what I did in the first place and I can't even get Apache to compile in that case. It kept complaining about mod_proxy can't resolve some external symbols, if I remember correctly. So I thought maybe you can't do both DSO and static at the same time. After I changed both to static l

Re: Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread C. David Wilde
On Monday 26 August 2002 10:43 am, Alex Lee wrote: I ran into this on a RH7 box. I compiled mod_perl into apache and compiled PHP as a DSO with APXS. Worked for me, but YMMV. > There seems to be conflict between mod_php 4.2.2 and mod_perl 1.27 running > with Apache 1.3.26 on Solaris 8 platform

Apache::Request

2002-08-26 Thread Ufuk Yuzereroglu
Hi,   I dont know if this is the right place to ask but I just cant install Apache::Request. When calling 'make', make cant find any of the header files. Can anyone tell me where I did go wrong?   Thanks   UY

Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread Alex Lee
There seems to be conflict between mod_php 4.2.2 and mod_perl 1.27 running with Apache 1.3.26 on Solaris 8 platform(FreeBSD with the same configuration seems to work fine). The Apache configuration as follows: CC="gcc" \ CFLAGS=" -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D

Re: Apache::Reload -- can't locate main.pm?

2002-08-26 Thread darren chamberlain
* Ken Miller <[EMAIL PROTECTED]> [2002-08-26 12:03]: > What's main.pm, and why can't Apache::Reload find it? I've searched > the archives, but have had little success in finding anything > interesting. Run find $dir -name 'main.pm' -print For each dir in @INC, and see what comes up. (darren

Apache::Reload -- can't locate main.pm?

2002-08-26 Thread Ken Miller
I've been successfully using Apache::Reload for a few weeks now. However, I installed it on my home development system, and I'm getting this error when accessing a module that contains 'use Apache::Reload': [Mon Aug 26 09:59:12 2002] [error] Can't locate main.pm in @INC (@INC contains: ... at /

[DIGEST] mod_perl digest 2002/08/19

2002-08-26 Thread jgsmith
-- mod_perl digest August 19, 2002 - August 25, 2002 -- Recent happenings in the mod_perl world... Features o

compilation problems in mod_perl

2002-08-26 Thread Amir
Hello, I am trying to compile mod_perl in my Redhat Linux 7.2. I run perl 5.8.0, when I do "perl Makefile.PL MP_AP_PREFIX=/usr/local/apache2" Its looks fine (I get no errors) but then when I try to do "make" I get the following: - cd "src/modules/perl" && make -f Makef

Clashing Apache::Symbol - Symbol ?

2002-08-26 Thread ODELL, TODD E (SWBT)
I just recently got my mod_perl to work. Config is mod_perl-1.27/Apache-1.3.26 on AIX 4.3.3. I wrote a PerlAuthenHandler which uses Expect.pm, requiring the normal Symbol.pm. In my startup.pl script for mod_perl I had this line: use lib qw(/usr/opt/perl5/lib/site_perl/5.6.1/aix/Apache); I get a "

Re: Three tier computing: suggestion needed for DBI connection.

2002-08-26 Thread Fabiàn R. Breschi
OOPS, I have made a little confusion. I just wanted to say that those envvars are needed ONLY on the at the front end to correctly compile DBD if that is the case. Anyway, I could recover the related dirs from the old front end installation with no recompilation of PG. F. Thanks Eric, ..so, I

Re: Three tier computing: suggestion needed for DBI connection.

2002-08-26 Thread Fabiàn R. Breschi
Thanks Eric, ..so, I could define at the backend my envvars: POSTGRES_INCLUDE=../psql/include POSTGRES_LIB=../psql/lib I imagine, hopefully, using the same OS on the backend (Sol2.6), I could only copy these two dirs from the frontend without recompiling PG again. That's all that I wanted. Ma

Re: Three tier computing: suggestion needed for DBI connection.

2002-08-26 Thread Eric Cholet
--On Thursday, August 15, 2002 12:32:16 +0200 "Fabiàn R. Breschi" <[EMAIL PROTECTED]> wrote: > After digging more docs, finally found for PG DBI: > > DBI:Pg:dbname=mydb;host=Ultra1;port=5432 > > question 2 still there, thanks. All you need is the pgsql/lib and pgsql/include directories so that

Re: Three tier computing: suggestion needed for DBI connection.

2002-08-26 Thread Fabiàn R. Breschi
After digging more docs, finally found for PG DBI: DBI:Pg:dbname=mydb;host=Ultra1;port=5432 question 2 still there, thanks. Fabian. "Fabián R. Breschi" wrote: > Hello all, > > At the moment I'm running Apache 1.3.12+mod_perl 1.27 with PG 7.2.1 > via DBI-DBD on a SS5 Solaris 2.6 machine. > >

Three tier computing: suggestion needed for DBI connection.

2002-08-26 Thread Fabián R. Breschi
Hello all, At the moment I'm running Apache 1.3.12+mod_perl 1.27 with PG 7.2.1 via DBI-DBD on a SS5 Solaris 2.6 machine. I'd like to separate the database engine from the Apache environment so, running Apache+mod_perl+DBI+DBD on the front end and PostgreSQL at the backend (hope I'm right with

Re: DBI makes apache fail in perl58.dll

2002-08-26 Thread Gerald Richter
> > thanks for preceeding answer. I have two others : > > 1/ is it going to be fixed in a future release of DBI ? I am sure Tim will fix it. > 2/ if I don't want to trace DBI can I ignore the trace file in children > processes created by modperl ? > Yes you can ignore it Gerald