Re: @param -> @_ in 2.0 question

2000-08-22 Thread Gerald Richter
Hi, > in the TODO file coming with 1.3b5 there is a feature > "- @param -> @_ -> done in 2.0" mentioned. If the former @param > of an Executed page is now @_, what is going to happen to > pages handled by EmbperlObject (when it is implemented in 2.x), > which get their request object in $_[0]? Wi

@param -> @_ in 2.0 question

2000-08-22 Thread Andre Landwehr
Hi, in the TODO file coming with 1.3b5 there is a feature "- @param -> @_ -> done in 2.0" mentioned. If the former @param of an Executed page is now @_, what is going to happen to pages handled by EmbperlObject (when it is implemented in 2.x), which get their request object in $_[0]? Will it rema

Re: http://dev.apache.org/from-cvs/embperl/ ?

2000-08-22 Thread Gerald Richter
Hi, > I just found the link to cvs snapshots on the ecos website. Is > http://dev.apache.org/from-cvs/embperl/ only temporarily > unavailable or is it completely gone? > Must be http://perl.apache.org/from-cvs/embperl/ . Seems like the german version of this document is not up to date. I update i

http://dev.apache.org/from-cvs/embperl/ ?

2000-08-22 Thread Andre Landwehr
Hi, I just found the link to cvs snapshots on the ecos website. Is http://dev.apache.org/from-cvs/embperl/ only temporarily unavailable or is it completely gone? Andre - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [HELP]: Error message

2000-08-22 Thread Gerald Richter
> > I have a problem with execute function in embperl. My page has a header and a > footer file which is called using execute. Embperl does HTML syntax checking > (btw, how can i turn this off). After i have corrected all the html mistakes > it gives me the following error: > > [310

Re: fastcgi and embperl

2000-08-22 Thread Gerald Richter
Hi, > > can i use embperl with fastcgi? I think about it as i dont have control > over the apache configuration (no root rights) but i would have control > over the fastcgi server. > Embperl runs as CGI, so it shouldn't be to hard to get it work with fastcgi, also I didn't have tested it so far.

Re: Custom error screen under EmbPerl?

2000-08-22 Thread Gerald Richter
Hi Scott, >Why doesn't this work? I'm trying to use the new errors array in 1.3b5 and it always comes back empty. There is no new @errors Array. The only thing I wrote is, that when you are inside of an Apache ErrorDocument, you can retrieve the error messages with > $errors = $req_rec -> pnote

Re: EMBPERL_OBJECT_ADDPATH modifiable at runtime?

2000-08-22 Thread Andre Landwehr
On Tue, Aug 22, 2000 at 10:35:57AM +0200, Gerald Richter wrote: > This behaveiour was intended, but from my experience with using > EmbperlObject, it seems better to me to change it in the following way: > > - If EMBPERL_OBJECT_STOPDIR is set, this directory is taken as the last > directory in th

Re: DBIStore problems

2000-08-22 Thread R. D. Stoll
> I managed to get Embperls session management to work with FileStore. > But with DBIStore I'm not sucessfull. Hi, my problem is solved. It was a stupid typing mistake with the username. I realized this when I saw my mail in the list. Sorry. Rolf ---

Re: EMBPERL_OBJECT_ADDPATH modifiable at runtime?

2000-08-22 Thread Gerald Richter
> As I understand it in EmbperlObject.pm, line 206ff $searchpath is > extended by paths from $ENV{EMBPERL_OBJECT_ADDPATH} _only_ when > $basename is _not_ found earlier, while processing the directory > hierarchie from dirname($req -> {inputfile}) down to > $stopdir and the likes. > I verified thi

Re: DBIStore problems

2000-08-22 Thread Gerald Richter
> PerlSetEnv EMBPERL_SESSION_ARGS "DataSource=DBI:mysql:session:rds586 > UserName=emperl Password=embperl" > Is thsi correct, or shouldn't it be UserName=embperl (missing b)? Gerald - To unsubscribe, e-mail: [EMAIL PROTEC

DBIStore problems

2000-08-22 Thread R. D. Stoll
Hi, I managed to get Embperls session management to work with FileStore. But with DBIStore I'm not sucessfull. My MySQL-database is set correct. The database name is session, the table with the required fields has the name sessions. The permissions are set correctly in database mysql, table user.

Re: Browser detection

2000-08-22 Thread Andrew Wansink
It is stored in the environment variable for the user agent. [- $browser = $ENV{HTTP_USER_AGENT}; -] [$ if ($browser =~ /MSIE/) $] [- Execute (ieheader.htm) -] [$ elsif ($browser =~ /Mozilla/) $] [- Execute (nsheader.htm) -] [$ else $] [$ endif $] hope this helps andy