> What am I overlooking here?  My web pages don't show up with the
> debug info any more!
>

Yes, 2.0b5 supports the debug link only on error pages. The content of the
logfile is different, as it was in 1.3.x, because of the different way 2.0
works, so it isn't as much usefull for application debugging as in 1.3 (also
it is still usefull). I planning to add more information during the run
state, to help debugging and readding the debug link in one of the next
version.

>
> # When should I use "PerlSetEnv" and when "SetEnv"? What's the
> difference?

The values of SetEnv are only available during the content phase of Apache,
while PerlSetEnv is always available, also on startup. So basicly it is the
best to only use PerlSetEnv. Unfortunately mod_perl has some problems with
PerlSetEnv when you have different settings in different locations (it
mostly works, but not always), so it's either necessary to use SetEnv
instead or repeat the PerlSetEnv settings.

I planning to use nativ Apache configuration directives (i.e
EMBPERL_SESSION_CLASSES without PerlSetEnv) in one of the next version to
get away from these env setting problems.

>
> # I'm using EmbperlObject.  Should this be changed?
> PerlModule HTML::Embperl

add a

PerlModule HTML::EmbperlObject

Basicly load as much modules as possible during server startup, that will
save memory, because the read only memory could be shared between childs.

>
> # Can't remember why this was here. I've commented it out and will
> # see what breaks! Seems it isn't supposed to be needed for 2.0b5?
> # PerlModule MD5
>

This was necessary to get 1.3.3 working with the newest Digest::MD5 version.
Isn't necessary in 1.3.4 and 2.0b5

> <Location /embperl/log>
>   SetHandler perl-script
>   PerlHandler HTML::Embperl
>   Options ExecCGI
> </Location>
>
> <Files *.epl>
> # How much of the stuff from up above should be in this section?
>

As longs as it isn't different, it doesn't make a difference if you write it
above or here

> PerlSetEnv EMBPERL_OBJECT_BASE base.epl
> PerlSetEnv EMBPERL_FILESMATCH "\.epl$"
> SetHandler perl-script
> PerlHandler HTML::EmbperlObject
>   Options ExecCGI
> </Files>
>

Gerald


-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to