strange $fdat

2000-07-19 Thread Sherwin Daganato
snippet in index.html snippet in foo.epl [- delete $fdat{string} ; -] page 1 When I submit index.html with test = #, snippet in foo.epl becomes: page 1 foo.epl accepted the character '#' in $fdat{test} for the first time. Why is it that when I click the link (page 1), only $fdat{page} w

%fdat oddities

2000-07-19 Thread Stanislav Grozev
Hi all, is it possible for %fdat to accumulate parameters passed thru POST and GET methods at the same time? Example: i have a mod_rewrite rule, like that: RewriteEngine on RewriteRule ^/([0-9a-fA-F]+)/(.*)$ /$2?sid=$1 [L,PT,NS,QSA] That way, an url in the form http://blah.tld/223453

Re: %fdat oddities

2000-07-19 Thread Dimitar Peikov
This works -> put the session into ENVIRONMENT variable RewriteEngine on RewriteRule ^(.*)/([0123456789]+)/([0123456789]+)/(.*) $1/$4 [E=UID:$2,E=SID:$3] On Wed, 19 Jul 2000, you wrote: > Hi all, > > is it possible for %fdat to accumulate parameters passed thru POST and GET > methods at the sam

Re: %fdat oddities

2000-07-19 Thread Stanislav Grozev
On Wed, Jul 19, 2000 at 05:26:18PM +0300, Dimitar Peikov wrote: > This works -> put the session into ENVIRONMENT variable > > RewriteEngine on > RewriteRule ^(.*)/([0123456789]+)/([0123456789]+)/(.*) $1/$4 [E=UID:$2,E=SID:$3] > yes, i have thought of that, and it indeed works, but I would like

Re: strange $fdat

2000-07-19 Thread Gerald Richter
>page 1 > >When I submit index.html with test = #, >snippet in foo.epl becomes: >page 1 > Oops, the # must be escaped, because it has a special meaning in a url. Goto epchar.c, line 229 and change { '#' , "" },/* # Number sign */ to { '#' , "%23" },

Re: %fdat oddities

2000-07-19 Thread Gerald Richter
>> This works -> put the session into ENVIRONMENT variable >> > >yes, i have thought of that, and it indeed works, but I would like to >pass it through the GET interface, if at all possible. if it turns out >impossible - then my choice would be a RewriteRule similar to yours above... Currently E

Re: Is this memory leak ?

2000-07-19 Thread Gerald Richter
> Memory usage of httpd sometimes grows up to 12~15M per child. and >goes on. >If Embperl caches script for efficieny. can I control its cache size? >I've downgraded Embperl version to 1.2.1. but same result. Every Embperl release is tested for memory leaks before I release it. Also 1.3b3 and 1.

Re: Embperl problem: &Execute and session cookies

2000-07-19 Thread Gerald Richter
>I hope this isn't a question you've answered 100 times already... :) > No, you are the first one asking this... >I have written a mod_perl content handler which calls &execute >(effectively it automatically does the page frame), and found that when >Embperl is used this way it won't set the

Cookies

2000-07-19 Thread mtoro
It is possible to maintain the state of cookie when browser exit, for next connection ? Or the cookies creates with "udat" exist only while browser is running ? Thanks in advance - To unsubscribe, e-mail: [

Search This List?

2000-07-19 Thread Ken Berland
Is there a searchable archive of this list? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cookies

2000-07-19 Thread ___cliff rayman___
see the following: http://perl.apache.org/embperl/Embperl.pod.3.html#EMBPERL_COOKIE_NAME here is an example from my site: PerlSetEnv EMBPERL_COOKIE_NAME GWCUID PerlSetEnv EMBPERL_COOKIE_DOMAIN .genwax.com PerlSetEnv EMBPERL_COOKIE_PATH / PerlSetEnv EMBPERL_COOKIE_EXPIRES 'Friday, 31-Dec-2010 14:0

Installing Embperl error.

2000-07-19 Thread Michael Elmore
Hello. Firstly I'd like to say that everything I've heard about Embperl is wonderful and I think you have an incredible module here. I'm trying to test it on my local system and can't get it to compile. I'm new at this so I'm sure I'm doing something wrong but I'm not sure what it is. If y

RE: Search This List?

2000-07-19 Thread Ken Berland
I get the following. I saw this before in the docs. Just wondering if there is a candy colored search button somewhere, or if I have to index the documents myself. If this is something that needs doing, maybe I can help. Index of /~mailarc/embperl NameLast modified

RE: Search This List?

2000-07-19 Thread Wim Kerkhoff
Yes, go here: http://www.ecos.de/~mailarc/embperl/ You can find this link in the online documentation that can be found at http://perl.apache.org/embperl On 20-Jul-2000 Ken Berland wrote: > Is there a searchable archive of this list? > > > > ---