On Fri, 8 Feb 2002, Gerald Richter wrote:
> > SetEnv EMBPERL_OPTIONS optRedirectStdout
> > SetEnv EMBPERL_OPTIONS optRawInput
>
> You have to use the numeric values (16 + 16384) and add them together:
>
> SetEnv EMBPERL_OPTIONS 16400
it would be cool to be able to do
Will EmbperlObject still work out from under ModPerl?
On 8 Feb 2002 at 19:57, Gerald Richter wrote:
>
>
> > I appear to be having some strang problems with ModPerl and caching
> > precompiled Perl code. When I change my code, the changes aren't taking
> > effect under ModPerl. I'm seeing som
> I appear to be having some strang problems with ModPerl and caching
> precompiled Perl code. When I change my code, the changes aren't taking
> effect under ModPerl. I'm seeing some very strange behavior.
>
This is true for all code inside of Perl modules or files which you load
with use or
> In my startup.perl, i use a module "db" which does:
>
> $db = DBIx::Database->new({
> '!DataSource'=>'dbi:mysql:mydatabase',
> '!LinkName' => 1,
> '!Reconnect' => 1,
> });
>
> *table1=DBIx::Recordset->Setup({
> '!DataSource'=>$db,
> '!Table'=>'mytable',
> });
>
You can't do this in startup.pl,
In my startup.perl, i use a module "db" which does:
$db = DBIx::Database->new({
'!DataSource'=>'dbi:mysql:mydatabase',
'!LinkName' => 1,
'!Reconnect' => 1,
});
*table1=DBIx::Recordset->Setup({
'!DataSource'=>$db,
'!Table'=>'mytable',
});
(and more tables, some with lengthy definitions)
Then al
I appear to be having some strang problems with ModPerl and caching
precompiled Perl code. When I change my code, the changes aren't taking
effect under ModPerl. I'm seeing some very strange behavior.
In order to buy me some time on this ModPerl situation (and try to get this
project milesto
> SetEnv EMBPERL_OPTIONS optRedirectStdout
> SetEnv EMBPERL_OPTIONS optRawInput
You have to use the numeric values (16 + 16384) and add them together:
SetEnv EMBPERL_OPTIONS 16400
Gerald
-
Gerald Richterecos
> Is there any way I can prevent my entire embperl site from falling apart
> when any single page generates sql errors?
>
Normaly there shouldn't be any problems for other pages then the one that
has the error into. At least I never have seen this, also I have sometimes
errors in my SQL too.
Can
Hello!
I wonder if any of you gurus can help me with this problem.
When I looked in the archive I couldn't find any information about this
one.
When I use the optRedirectStdout option it seems that only stderr will
be redirected
not stdout. I've got the impression that it would be the other way
a