RE: Embperl question/idea

2000-06-22 Thread Gerald Richter
> Aha. But it neither rewrites existing values nor handle multivalue > parameters. For link > > > query string > > lang=cz&name=&city=&district=praha&features=entrance_disabled&feat > ures=tennis > > is rewitten as > > lang=de&page=2&city=&name=&sub=1&lang=cz&from=advanced&district=pr > aha

RE: Embperl question/idea

2000-06-22 Thread Gerald Richter
> > ... > > What's about > > > > Page 2 > > > > this should exactly do what you want, doesn't it? > > I don't understand how this is supposed to work but no, it doesn't do > what I need, it prints > > page=2&ARRAY(0x82f9884) > Oops, I missed the quotes, must be: Page 2 otherwise Embperl cann

RE: session management -- %udat

2000-06-22 Thread Gerald Richter
> > PerlSetEnv EMBPERL_SESSION_CLASSES "DBIStore SysVSemaphoreLocker" > PerlSetEnv EMBPERL_SESSION_ARGS "object_store=DBIStore > DataSource=DBI:mysql:session" > You don't need the "object_store=DBIStore" in SESSION_ARGS, because it's already in SESSION_CLASSES, but it doesn't hurt here. > [- >

RE: Embperl question/idea

2000-06-22 Thread Gerald Richter
Hi, > > sometimes one's building navigation between pages like this > > Page 1 | > Page 2 | > Page 3 > > However when it's dynamically built page, say search results, one's > loosing the original query string. Trivial fix like > > Page 2 > What's about Page 2 this should exactly do wh

RE: Perl Conferrence in Monterey

2000-06-22 Thread Gerald Richter
> > Are you certain of this URL. It's a dead link at this moment. > Yes, it's correct. I have tried it directly before I wrote the mail und tried it now and it works for me. You could also try the home page http://conferences.oreilly.com/oscon2000/index.html Click on sessions and then Apache

session management -- %udat

2000-06-22 Thread Wei Zhu
Hi everybody, We plan to develop a new site using Embperl. Our current installed program : Apache: 1.3.12 mysql: 3.22.32 Embperl: 1.3b2 Apache::Session: 1.03 etc. --

Embperl question/idea

2000-06-22 Thread Robert
Hi, sometimes one's building navigation between pages like this Page 1 | Page 2 | Page 3 However when it's dynamically built page, say search results, one's loosing the original query string. Trivial fix like Page 2 wouldn't work if page parameter is already in query string. And there'r

Re: Perl Conferrence in Monterey

2000-06-22 Thread Ruben I Safir
Gerald: Are you certain of this URL. It's a dead link at this moment. Gerald Richter wrote: > > In case anybody is interested, here is a link about what I will talk at the > Perl Conference: http://www.oreillynet.com/pub/e_sess/863 > > Gerald > >

RE: Unbuffered Output

2000-06-22 Thread Gerald Richter
> I tried the SetEnv EMBPERL_OPTIONS 2112, but that didn't work. That should work. > I > also tried > adding a > [- $ENV{EMBPERL_OPTIONS} |= 64 ; -] > to the top of the html file, but that didn't work either. > No, this can't work, because Embperl need to know this before the page start. > Am

RE: Unbuffered Output

2000-06-22 Thread Wim Kerkhoff
On 22-Jun-2000 Gerald Richter wrote: > > optEarlyHttpHeader must be set before the script starts, i.e. via SetEnv > EMBPERL_OPTIONS xxx, but Apache let you do this only for the whole (virtual) > host. > > So what I would do is to copy embpcgi.pl to another name and put a > > $ENV{EMBPERL_OPTION

RE: Unbuffered Output

2000-06-22 Thread Gerald Richter
Hi, > > I am returning a rather lengthy result of a database query and I want to > unbuffer the page so the results start returning before the entire page is > generated. Do I use optEarlyHttpHeader? > Yes > I am currently using the CGI script method embpcgi.pl to invoke > embperl. How > do I te

Perl Conferrence in Monterey

2000-06-22 Thread Gerald Richter
In case anybody is interested, here is a link about what I will talk at the Perl Conference: http://www.oreillynet.com/pub/e_sess/863 Gerald - Gerald Richterecos electronic communication services gmbh Internetconnect * Webserver/-de

RE: help on escaping

2000-06-22 Thread Gerald Richter
> > Did you try to use escmode=0 in in general configuration > or locally: > > [- $HTML::Embperl::escmode=0; -] > [+ " HI! <\b>" +] > [- $HTML::Embperl::escmode=1; -] > This could be written as [+ local $escmode = 0 ; " HI! <\b>" +] but it will only work if optRawInput is set (which should be d

Re: help on escaping

2000-06-22 Thread olivier
Did you try to use escmode=0 in in general configuration or locally: [- $HTML::Embperl::escmode=0; -] [+ " HI! <\b>" +] [- $HTML::Embperl::escmode=1; -] Hope it helps... On Thu, 22 Jun 2000, Sherwin Daganato wrote: > Pls help me on this. > > how can i make this work? > [+ " HI! <\b>" +] > >