Re: oddities

2002-01-24 Thread Arnold van Kampen
Only thing I my self find sofar is that I should be using the sticky tag under textfield: textfield(-name='fieldsname', -override=1); or use force in stead of override.. Ok I did not see that right away but I find the differences in behaviour quite puzzling. Arnold van Kampen On Sat, 12

Re: oddities

2002-01-13 Thread Arnold van Kampen
Ok, that works! But I never realized this before. Quite contra intuitive. And what about the /per/ dir... So if you could still be so kind as to look at the code sample below: On Sat, 12 Jan 2002, Ged Haywood wrote: Hi again, On Sat, 12 Jan 2002, Arnold van Kampen wrote: (only the

Re: oddities

2002-01-13 Thread Ged Haywood
Hi Arnold, On Sun, 13 Jan 2002, Arnold van Kampen wrote: So if you could still be so kind as to look at the code sample below: I'm sorry, I cannot afford the time to vet your code for you. Perhaps you don't need CGI.pm at all, could you use Apache::Request? 73, Ged.

oddities

2002-01-12 Thread Arnold van Kampen
Hi What could be wrong in this few lines: It is supposed to add 10 to the value in the textfield after each submission. I tried it on another pc too, same result. (one I leave alone most of the time; no messing around) I also tried it under the perl directory (Apache::Registry) I tried using

Re: oddities

2002-01-12 Thread Ged Haywood
Hi there, On Sat, 12 Jan 2002, Arnold van Kampen wrote: What could be wrong in this few lines: It is supposed to add 10 to the value in the textfield after each submission. Sounds supiciously like you're using Apache on a system which allows Apache to have many child processes, and you

Re: oddities

2002-01-12 Thread Arnold van Kampen
[Sat Jan 12 17:06:19 2002] [notice] Apache/1.3.20 (Unix) AxKit/1.4 mod_perl/1.26 configured -- resuming normal operations [Sat Jan 12 17:06:19 2002] [notice] suEXEC mechanism enabled (wrapper: /usr/local/apache/bin/suexec) linux on regular pc kernel 2.2.18 I tried the httpd -X to make sure

Re: oddities

2002-01-12 Thread Ged Haywood
Hi again, On Sat, 12 Jan 2002, Arnold van Kampen wrote: (only the plain string works, not the function textfield() after several submissions) Try this instead of the first line in your handler: my $r=shift; my %params = ($r-method eq 'POST') ? $r-content : $r-args; my $bla =