>
> Stupid question, but how do you make sure it's set BEFORE embperl is
> loaded?
>

You can load Embperl in three way (when using mod_perl)

1.) PerlModule HTML::Embperl
2.) in a startup file which is loaded via PerlRequire, you say use
HTML::Embperl
3.) you don't load it explicitly, the mod_perl does it on the first request
(not recommended, because it less efficient)

For 1., put the PerlSetEnv with the session vars, before the PerlModule
statment in your httpd.conf
For 2., put the PerlSetEnv with the session vars, before the PerlRequire
statment in your httpd.conf, or the $ENV setup in a BEGIN block before the
use
For 3. it doesn't matter where you setup the config, as long as it is
somewhere in your httpd.conf

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