mod_info.c and others via libexec?

2001-10-03 Thread El Capitan
Hi folks, I'm new to the list as well as mod_perl and have just recently loaded Apache/mod_perl (Server Version: Apache/1.3.19 (Unix) mod_perl/1.25) and cant find any of the modules such as mod_info.c and others which are supposed to be in ../libexec. In fact ../libexec is empty! Did I do someth

New Installation...

2001-10-16 Thread El Capitan
I'm trying to install apache 1.3.22 and modperl 1.26 and am running into some issues. I tried running: perl Makefile.PL DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 APACHE_PREFIX=/mydir/apache and everything looked ok. Then I ran "make test" and got this: ... ... cp t/conf/mod_perl_srm.conf t/conf/srm

delayed file uploads...

2001-12-03 Thread El Capitan
i have a simple question. im not sure if there is a mod_perl directive or module for this but id like to perform this simple task: two web pages run in sequence. the first page, id like a user to select several files from his/her machine for uploading to the server using the input type "file" ta

file upload process

2001-12-04 Thread El Capitan
Another (most likely) trivial question for the experts. When a large file is uploaded from an html form page, it appears the file is loaded BEFORE I can start some kind of "graphical metering" response: sub handler() { my $apr = Apache::Request->new($r); my $upload = $apr->upload

LWP Help

2001-12-14 Thread El Capitan
Hi folks, Im running an apache/mod_perl server and hope this isn't too far off base. I'm trying to get the following script to run against an e-merchant system. I've narrowed it down to the "content_type" and am struggling on how to send form data via LWP::UserAgent. I beleive all I need is to

Form Submit Question and Apache::Request

2001-12-16 Thread El Capitan
I have a form to send to a content handler and wish to use the HTML tag: One Two Three Four Five Six I have a handler like: ### package testform; use Apache::Requst; sub handler() { my $r = Apache::Request->new(shif