Re: EmbperlObject + ApacheStatINC Woes

2001-06-04 Thread Gerald Richter
Hi, I tried to track it down and the problem is, that as soon you have a PerlInitHandler, mod_perl doesn't setup your environment correctly. Until this is fixed in mod_perl, you can either use SetEnv instead of PerlSetEnv, but SetEnv only works outside of Location/Directory blocks or move the Apa

Re: '[8708] ERR: 25: Line1: Error' caused by 'PerlModule HTML::Embperl'

2001-06-04 Thread Gerald Richter
> '[8708] ERR: 25: Line1: Error' caused by 'PerlModule HTML::Embperl' > I keep getting the above error when I start Apache. Error 25 means, that Embperl is not compiled for mod_perl, but you try to use it with mod_perl. Rerun Makefile.PL and give it the correct Apache source location. After a re

Re: DBI errors

2001-06-04 Thread Gerald Richter
> > With MySQL I get the "document contains no data" in the browser and > the following in the httpd error log ... "child pid 24469 exit signal > Segmentation fault (11)". > This because of some problem with mod_perl and PHP when both loaded in the same Apache process. Search the embperl and/or

Re: repetive td rendering in 1.3.2

2001-06-04 Thread Gerald Richter
> I have notice some strange behavior with table processing > in version 1.3.2. Basically, if I execute a template within > a and not within a , the table cells are repeated. > I have discovered the same problem here. It's because of some changes I have made in 1.3.2 to get the cleanup working w

'[8708] ERR: 25: Line1: Error' caused by 'PerlModule HTML::Embperl'

2001-06-04 Thread Scott Chapman
I keep getting the above error when I start Apache. When I remove this line from the httpd.conf file, it works without the error: PerlModule HTML::Embperl When I try to open a .epl file, I get a message in Apache's error log: [notice] child pid 8807 exit signal Segmentation fault (11) and a mes

Re: EmbperlObject + ApacheStatINC Woes

2001-06-04 Thread David Lloyd
It just kills it totally. Either embperl.log is not made, or no lines are added to it. The moment I remove PerlInitHandler Apache::StatINC, /tmp/embperl.log fills up with what one would expect and everything works. I don't believe a log of EmbperlObject working correctly would be useful so I'm no

DBI errors

2001-06-04 Thread Michael Chopek
Hi people; Apache/1.3.12 Red Hat 6.2 mod_ssl/2.6.4 OpenSSL/0.9.5a PHP/4.0.4pl1 Embperl/1.3.2 HTML::Embperl 1.3.2 mod_perl/1.23 (DSO) Installed Embperl 1.3.2 and seems as if things went well, as the test.pl reports "All test have been passed successfully!" All the sample pages(non DBI) pro

repetive td rendering in 1.3.2

2001-06-04 Thread Michael Barry
I have notice some strange behavior with table processing in version 1.3.2. Basically, if I execute a template within a and not within a , the table cells are repeated. An (bare-bones) example: #!/usr/bin/perl use HTML::Embperl; use CGI; $cgi = new CGI; print $cgi->header; print $cgi->start_

Re: EmbperlObject + ApacheStatINC Woes

2001-06-04 Thread Gerald Richter
> > Now, under this setup if I have Apache::StatINC compiled, > HTML::EmbperlObject refuses to find any pages no matter what I call > them. If I comment out or delete any references to Apache::StatINC then > HTML::EmbperlObject suddenly works. > > Is this a known problem or clash? > You config se

Re: Auto Derefencing in an Anchor?

2001-06-04 Thread Gerald Richter
> > Why did you allow the references to automatically dereference in the > Anchor? > As show in the example, you can use it to easily pass parameters: [- $A = { A => 1, B => 2 } ; # Hashreference @A = (X, 9, Y, 8, Z, 7) -] http://localhost/tests?[+ $A +]"> http://localhost/te