Re: mp2: really dumb q re getting values sent to a form

2003-06-12 Thread Stas Bekman
Carl Brewer wrote: My appologies, I've tried to grok this from the doco, but must have missed it somewhere while trying to parse apache::request somehow? You mean Apache::RequestRec. Apache::Request is a 3rd party module. I've got a script, I want to grab submitted values to it of the form :

an update on Apache::Request 2.0 progress

2003-06-12 Thread Stas Bekman
BTW, Apache::Request's 2.0 port is moving forward very fast thanks to Joe Schaefer's efforts. He is looking for help, at least with testing the perl glue. If you are interested to help, join the apreq-dev list: http://httpd.apache.org/apreq/

Re: mp2: really dumb q re getting values sent to a form

2003-06-12 Thread Carl Brewer
Stas Bekman wrote: Carl Brewer wrote: My appologies, I've tried to grok this from the doco, but must have missed it somewhere while trying to parse apache::request somehow? You mean Apache::RequestRec. Apache::Request is a 3rd party module. I've got a script, I want to grab submitted values

Re: mp2: really dumb q re getting values sent to a form

2003-06-12 Thread Stas Bekman
Carl Brewer wrote: [...] print $r-args; Perfect. I found that just after I posted the email too .. *doh* prints a=4, you can also do: $r-args(a=5); Is that what you are after? Yes. Out of curiosity, why would setting the argument be of any use? It's come in from the URL supplied by the

How practical is that Practical mod_perl?

2003-06-12 Thread Slava Bizyayev
Yesterday I've finally received a long-waiting book (http://www.modperlbook.org/) written by Stas Bekman and Eric Cholet. In fact, I don't know who is that Eric Cholet, but the presence of the name of Stas Bekman was enough in my case to decide, how important the book is supposed to be for me in

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Stas Bekman
Haroon Rafique wrote: On Today at 9:46am, SB=Stas Bekman [EMAIL PROTECTED] wrote: SB SB Actually it was Sunday (future!) and it's winter (past?) here in SB Melbourne ;) I figured we were a few continents away. SB SB Then, if it's indeed your globally installed Apache::Filter and not SB the

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Stas Bekman
Stas Bekman wrote: Haroon Rafique wrote: On Today at 9:46am, SB=Stas Bekman [EMAIL PROTECTED] wrote: SB SB Actually it was Sunday (future!) and it's winter (past?) here in SB Melbourne ;) I figured we were a few continents away. SB SB Then, if it's indeed your globally installed Apache::Filter

HI

2003-06-12 Thread Oskar
Hi

[PATCH] Apache::DBI - AutoCommit = 1 and begin_work (inc example)

2003-06-12 Thread Patrick Mulvany
Hi, Came accross a bug when when trying to reduce creation of handles on a site. Currently Apache::DBI makes the assumption that it AutoCommit = 1 then the handle does not need cleaning up. This is not neccessariliy true as begin_work switches off the AutoCommit for one transaction. First

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Haroon Rafique
On Today at 6:58pm, SB=Stas Bekman [EMAIL PROTECTED] wrote: SB please try this patch against the current cvs. I did some testing and SB it seems to work. Test it on your old setup where you still have this SB problem. SB SB [...patch snipped...] SB SB I applied your suggested patch to the 2

Help needed !!

2003-06-12 Thread ECE Webmaster
Hi , I am having a problem with an application that I am running on an Apache server. It says that it is unable to load the script. I have chmod all things to 777. My application is at http://www.ece.ufl.edu/COE/pages/chat/chatmain.html Thanks a ton Mandeep

Re: Help needed !!

2003-06-12 Thread Raf
ECE Webmaster said: Hi , I am having a problem with an application that I am running on an Apache server. It says that it is unable to load the script. I have chmod all things to 777. My application is at http://www.ece.ufl.edu/COE/pages/chat/chatmain.html Thanks a ton Mandeep That

Apache::AuthenNTLM problems

2003-06-12 Thread Luiz Carlos (Paulista)
Hi, I´m trying to install Apache in a Linux Machine, with mod_perl and AuthenNTLM. I want to authenticate users from a Windows 2000 domain. I don´t want them to be prompted for their username and password. These are the softwares I have installed: Red Hat Linux 8.0, Samba -2.2.8(use

RE: [mp2] make test fails nearly all tests...

2003-06-12 Thread Tim Howell
Stas (and others)-- Following your suggestion I built/tested as a normal user. This time only one test fails (one of the CGI tests). Below is the output from make test. Thanks for your help. I've only been using unix/linux for a few months, but I've learned an enormous amount from lists like

ANNOUNCE: Bricolage 1.6.1

2003-06-12 Thread David Wheeler
I'm pleased to announce announce the release of Bricolage-Devel 1.6.1. This maintenance release addresses a number of issues in version 1.6.0. Some of the more important changes since 1.6.0 include: * Bricolage now works with HTML::Mason 1.20 and later. * Added Chinese (Traditional)

Re: How practical is that Practical mod_perl?

2003-06-12 Thread Perrin Harkins
On Thu, 2003-06-12 at 03:03, Slava Bizyayev wrote: Yesterday I've finally received a long-waiting book (http://www.modperlbook.org/) written by Stas Bekman and Eric Cholet. In fact, I don't know who is that Eric Cholet Eric pre-dates you on this list by a few years. He knows his stuff. The

Re: Books - was How practical is that Practical mod_perl?

2003-06-12 Thread Gedanken
speaking of mod perl books, i have gotten lost somewhere. theres the eagle book, theres stas' book (practical mod_perl i learned today), and theres 'geoffs book'. what is the name of geoffs book please? i wanna have all 3 after reading the reviews yet geoffs last name is escaping me. --

Re: Books - was How practical is that Practical mod_perl?

2003-06-12 Thread Perrin Harkins
On Thu, 2003-06-12 at 17:31, Gedanken wrote: speaking of mod perl books, i have gotten lost somewhere. theres the eagle book, theres stas' book (practical mod_perl i learned today), and theres 'geoffs book'. what is the name of geoffs book please? It's mod_perl Developer's Cookbook. You

ANNOUNCE: Gestinanna::POF 0.01

2003-06-12 Thread James G Smith
This is yet another persistent object framework, but designed for the Gestinanna application framework ( http://sf.net/projects/gestinanna/ ) though it can work outside that framework. Gestinanna::POF currently supports Alzabo, MLDBM, LDAP (limited testing), and aggregations of objects. Security

Re: [mp2] make test fails nearly all tests...

2003-06-12 Thread Stas Bekman
Tim Howell wrote: I figured this one out: CGI needed to be updated. =) Yes, the cvs version already handles this test gracefully. __ Stas BekmanJAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl

Re: [mp2] make test fails nearly all tests...

2003-06-12 Thread Stas Bekman
Tim Howell wrote: Stas (and others)-- Following your suggestion I built/tested as a normal user. This time only one test fails (one of the CGI tests). Below is the output from make test. Great. However if you don't mind to help others, I'd like you to help me to resolve your original problem,

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Stas Bekman
Haroon Rafique wrote: On Today at 6:58pm, SB=Stas Bekman [EMAIL PROTECTED] wrote: SB please try this patch against the current cvs. I did some testing and SB it seems to work. Test it on your old setup where you still have this SB problem. SB SB [...patch snipped...] SB SB I applied your

Re: [mp2] Apache::compat breaking 2.0 API solutions?

2003-06-12 Thread Scott Penrose
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 sounds good to me. Anybody has an experience of using Filter::Simple with mod_perl? A simple version looks like this... package Apache::compat::uber; use strict; use Filter::Simple; use constant ahh = 0; FILTER { print STDERR PRE = $_\n if

Re: Help needed !!

2003-06-12 Thread Stas Bekman
ECE Webmaster wrote: Hi , I am having a problem with an application that I am running on an Apache server. It says that it is unable to load the script. I have chmod all things to 777. My application is at http://www.ece.ufl.edu/COE/pages/chat/chatmain.html You should look in error_log. It'll

Re: Apache::AuthenNTLM problems

2003-06-12 Thread Stas Bekman
Luiz Carlos (Paulista) wrote: Hi, I´m trying to install Apache in a Linux Machine, with mod_perl and AuthenNTLM. I want to authenticate users from a Windows 2000 domain. I don´t want them to be prompted for their username and password. These are the softwares I have installed: Red Hat Linux 8.0,

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Stas Bekman
Perrin Harkins wrote: On Tue, 2003-06-10 at 05:08, Mithun Bhattacharya wrote: What exactly is broken in RedHat 8.0/9.0 - RedHat's build of perl, perl's support for unicode or perl's support for locales ? Short answer: the Perl build is fine if you change the locale to what it was in previous

Re: [mp2] make test fails with 1.99_10-dev sources on redhat

2003-06-12 Thread Stas Bekman
Perrin Harkins wrote: On Thu, 2003-06-12 at 20:10, Stas Bekman wrote: Perrin, do you think it's worth documented this somewhere in the troubleshooting section? OS-specific issues? That's a good idea. I'm going on vacation for a couple of weeks and won't be able to look at it until I get back,

Re: Apache::AuthenNTLM problems

2003-06-12 Thread Brett Hales
On Fri, 2003-06-13 at 01:53, Luiz Carlos (Paulista) wrote: Hi, I´m trying to install Apache in a Linux Machine, with mod_perl and AuthenNTLM. I want to authenticate users from a Windows 2000 domain. I don´t want them to be prompted for their username and password. These are the

Re: Apache Error of $r-read failed to read

2003-06-12 Thread Chris Faust
I FOUND IT!! Like you said, it was in CGI.pm. It happens when doing a file upload ## while ($bytesread=read($image_filename_one,$buffer,1024)) { print OUTFILE $buffer; } ## If during the upload the user stops, drops or dies then the errors come through which makes me think now

mod_perl slower than expected?

2003-06-12 Thread Trevor Phillips
I am baffled! I have a quite complex application. Actually, it's more like a language. (Yes, a language written in Perl... ^_^) I've written it as Perl Modules, and I have a number of front-ends: normal CGI, FastCGI, command line, and Apache Module. When doing development, I predominantly work

Re: mod_perl slower than expected?

2003-06-12 Thread Cees Hek
Quoting Trevor Phillips [EMAIL PROTECTED]: However, when I used the revised modules with the Apache Module, I'm only getting a marginal performance increase! Since the bulk of the work is being done by modules common to the Apache and FastCGI front-ends, I am at a loss as to explain why

Re: mod_perl slower than expected?

2003-06-12 Thread Perrin Harkins
Trevor Phillips wrote: My latest set of changes have resulted in optimisation and given a decent speed increase of up to 25% (depending on the exact usage) for complex pages. However, when I used the revised modules with the Apache Module, I'm only getting a marginal performance increase!

Re: mod_perl slower than expected?

2003-06-12 Thread Trevor Phillips
On Friday 13 June 2003 12:14, Cees Hek: I'm far from new to mod_perl, so yes, I've checked all the obvious stuff. - Are you only checking the first time you load the page? mod_perl still needs to load all the perl modules on the first request to a page, unless you have specifically

Re: mod_perl slower than expected?

2003-06-12 Thread Stas Bekman
Trevor Phillips wrote: [...] Since your question is too broad to be able to easily pinpoint any problems without spending some time with it, I'd suggest reading: http://perl.apache.org/docs/1.0/guide/performance.html if you haven't done that yet. By the way, I don't understand your comment about