Re: perish :)

2002-05-14 Thread Gerald Richter - ecos gmbh
Hi, > > I've got the following sub in one of my base libraries: > > sub perish($;@) > { > > Apache::exit(0); > } exit inside a sub is not yet supported in 2.0b7. It's planed for b8 >... > } > perish($@) if $@; > -] The only workaround currently is to write if ($

Re: Apache segfaults on page load

2002-05-14 Thread Gerald Richter - ecos gmbh
Hi, could you please rebuild Embperl with perl Makefile.PL debug make install and send me the resulting backtrace again. (It will contain line numbers and arguments, which will help me to find and fix the problem) Gerald - Gerald Ric

Re: Possible 2.0b7 issues OR Setup help

2002-05-14 Thread Gerald Richter - ecos gmbh
> > > Well, I found out why my system had nothing for the configuration > directives via mod_info. > > Remember I mentioned that my configurations are separated into different > files that I 'include' from the httpd.conf. Well, it looks like > mod_info (at least the version I have) does not follo

Re: Random crashes

2002-05-14 Thread Gerald Richter - ecos gmbh
Hi, do you have any idea why a Embperl page is called in your ChildTerminate handler? I guess Perl is already gone, when this call is executed Gerald - Gerald Richterecos electronic communication services gmbh Internetconnect *

Re: Embperl CGI and IIS howto

2002-05-14 Thread Gerald Richter - ecos gmbh
> > <%@ Language=PerlScript %> > <% use HTML::Embperl %> > <% > $input = ***some perl goes here ***; > $output; > HTML::Embperl::Execute({input => \$input,output => \$output}); > print $output; > %> > With 1.3.x this will not work, because you run into problems with threads, because 1.3.x cannot

Re: Handling Errors with 2.0b7

2002-05-14 Thread Gerald Richter - ecos gmbh
> > 1. First off, I could not seem to get Embperl to email errors to me, >using the EMBPERL_MAIL_ERRORS_TO and associated configs. Is this >working? Is there something else I need to do to make it work? > >Example (2.0b7 config): > EMBPERL_MAIL_ERRORS_TO cam@localhost > E

Re: Possible 2.0b7 issues OR Setup help

2002-05-14 Thread Cameron McBride
> ok, that's good to know Yeah -- we are sane! ;-) > Could you please put all the Embperl directives in the first file and then > send me the mod_info output for Embperl? Sure thing. I made a test that has a configuration that does not work (ie EMBPERL_OBJECT_BASE does not seem to change in a

Embperl 1.x question

2002-05-14 Thread Kee Hinckley
This all applies to the latest Embperl 1.3 revision. It started out as a bunch of questions, but in the process of testing each case I may have come up with my own answers, but confirmation would be nice. I have some initialization that I need to do on every page of my web site. The site is

How to get DBIx::RecordSet SQL statements logged?

2002-05-14 Thread Scott Chapman
How do I get the resulting SQL statement built by DBIx::Recordset to be logged somewhere so I can see it? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DBIx::Recordset $values parameter not behaving as expected.

2002-05-14 Thread Scott Chapman
I have a snippet here of my .epl file: > my ($group_file) = > Apache::Htgroup->load('/www/ok_users/ar_group'); DBI->trace(2, > '/tmp/dbitrace.txt'); > > use DBIx::Recordset ; > $maxrow = 500; > $db{'!DataSource'} = $req->{website_database}; > $db{'!Username'} = $req->

Query relating to Apache::ASP

2002-05-14 Thread Ranjeet
Sir,   We are facing a problem . We have made our module with asp as our front end and sql server as our back end :. But due to problem we have to use Apache server and Oracle 8i for the project .. After going through related articles its says::  . "The only type of ASP scripts that are supp

Download

2002-05-14 Thread Lucas Sábalo
Hi, I trying to download EmbPerl from ftp.dev.ecos.de but I can't connect to the server ftp.dev.ecos.de. Where can I download it? Is it available on RPM for RH 7.2? Thanks. Lucas - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Download

2002-05-14 Thread Cameron McBride
> Hi, I trying to download EmbPerl from ftp.dev.ecos.de but I can't connect to > the server ftp.dev.ecos.de. > Where can I download it? The best way to obtain Embperl, is probably through CPAN (www.cpan.org). The easiest way to do this from a RH installation is to use the CPAN module of perl.

Re: How to get DBIx::RecordSet SQL statements logged?

2002-05-14 Thread Kee Hinckley
At 10:53 AM -0700 5/14/02, Scott Chapman wrote: >How do I get the resulting SQL statement built by DBIx::Recordset to be >logged somewhere so I can see it? $DBIx::Recordset::Debug = 2; or set Debug when you open the database. E.g. new DBIx::Database({ '!DataSource' =>

Re: Query relating to Apache::ASP

2002-05-14 Thread Cameron McBride
Perhaps I missed something, but it looks like you have found the wrong list. This list is for supporting 'Embperl', a perl based module to do similiar dynamic scripting as ASP, but instead uses a perl like syntax. I would be happy to help, but I do not use ASP and have not used Apache::ASP. Som

Re: DBIx::Recordset $values parameter not behaving as expected.

2002-05-14 Thread Gavin Carr
On Tue, May 14, 2002 at 11:36:00AM -0700, Scott Chapman wrote: > > # If user is a member of acctmgr group, don't show them Status_Viewed records. > > if ($group_file->ismember($req->{user},'acctmgr')) { > > $db{'$where'} = $db{'$where'} . ' AND eventcode != ?'; > > $db{'$value