Re: Filtering HTML files with mod_proxy and mod_perl

2000-07-20 Thread Wim Kerkhoff
Cool! I'll probably use that if I do a next version of my filter, and if I want to manipulate the content based on the content type, the host that is requesting it, etc. Right now, I'm just using it as the proxy server on my LAN, so that only those who now a password can surf. If they can't,

Re: Customized Module For Logging In Transfer Log

2000-07-20 Thread David Hodgkinson
Saurabh Goyal [EMAIL PROTECTED] writes: Hi, I am new to apche and mod_perl. I am trying to write apache module to write some additional parameters to transfer log (access.log). Is anybody have an idea, how can we write additional stuff to access.log including the defaults. Any help

Apache::ASP+

2000-07-20 Thread Kenneth Lee
Hi all! Any one started to make one? It seems a good idea. Of coz it's not simple to build the whole complex platform (NGWS), but the concept of server-side object and the event driven model is too interesting to me. Kenneth

Re: Weird Perl behaviour

2000-07-20 Thread Alex Shnitman
On Wed, Jul 19, 2000 at 10:24:24PM -0400, Rick Myers wrote: After fooling with this for several hours I've finally come to the conclusion that this is probably an Apache "problem". [...] *whew* Wow, MAN! Thank you SO much! It indeed worked! A couple of questions remain -- why is the

FORBIDDEN ERROR -- Help!

2000-07-20 Thread Richard M. Lemanski
Hello, I had been doing some benchmark testing with ApacheBench to compare the performance differences between mod_cgi and mod_perl and they were going great until all of the sudden my results fell way out of line. I need help! After I switched the max requests per child from 1 to 5000 the

Re: [OT]: Re: ApacheCon Europe - thoughts please ?

2000-07-20 Thread David Hodgkinson
Gunther Birznieks [EMAIL PROTECTED] writes: Well, I'm sort of kidding here. But the reality is that a conference offers a lot -- not just knowledge (then just attend a tutorial locally at Sun or someplace) but networking. Buying key people lots of beer in other words. -- Dave

Startup file problem

2000-07-20 Thread Elie Nacache
Hi, [1] When I run apache server I see in a log file that my startup file is required much than one time. Why ?? [2] I try to print the process id ($$) and it's always constant but not appeared from process status. Why ?? [3] Through startup file I am initialize some data. It's seem

Make failed on DBD::Oracle 1.03/1.06

2000-07-20 Thread Kenneth Lee
System: RedHat 6.1 Perl 5.6.0 DBI 1.14 Oracle 8.1.5 Here's the output for 1.03 and 1.06. [root@test4 DBD-Oracle-1.03]# make mkdir blib mkdir blib/lib mkdir blib/lib/DBD mkdir blib/arch mkdir blib/arch/auto mkdir blib/arch/auto/DBD mkdir blib/arch/auto/DBD/Oracle mkdir blib/lib/auto

Apache::Session::MySQL problem

2000-07-20 Thread Tatsuhiko Miyagawa
I'm using Apache::Session 1.51 + mysql 3.22.32 + mod_perl 1.24 + Apache 1.3.11. They work well except one problem. The problem is, if an acquired Session ID (from Cookie) is not stored in the session database, Apache goes like panic: POPSTACK Callback called exit. I know Apache::Session will

Re: Customized Module For Logging In Transfer Log

2000-07-20 Thread darren chamberlain
Saurabh Goyal ([EMAIL PROTECTED]) said something to this effect: Hi, I am new to apche and mod_perl. I am trying to write apache module to write some additional parameters to transfer log (access.log). Is anybody have an idea, how can we write additional stuff to access.log including the

Re: [OT] auth modules

2000-07-20 Thread Matt Carothers
On Tue, 18 Jul 2000, martin langhoff wrote: The marketing dept here wants something really weird: they want to publish a datasheet in a 'protected' page, but the want the usr/pw hashes to be 'one time only'. So the user must be deleted after the first time it is used. That should be all

State Maintenance.

2000-07-20 Thread Simpson, John scott
Is there a module for state maintenance using a database and cookies?

Re: State Maintenance.

2000-07-20 Thread Simon_Wilcox
I've used Apache::AuthCookie and coupled it to Apache::Session::MySQL Once I validate a new user, I create a new session, store the username and return the session key for AuthCookie to use. When authorising, I use the key to recover the session and extract the

Re: Make failed on DBD::Oracle 1.03/1.06

2000-07-20 Thread David Ranney
System: RedHat 6.1 Perl 5.6.0 DBI 1.14 Oracle 8.1.5 [snip] I removed the ../DBI-1.14 folder before I run make. Any hints? This is really a question for the DBI mailing list: http://www.isc.org/services/public/lists/dbi-lists.html That said, you haven't told us anything about

Re: State Maintenance.

2000-07-20 Thread darren chamberlain
Simpson, John scott ([EMAIL PROTECTED]) said something to this effect: Is there a module for state maintenance using a database and cookies? Check out Apache::Session. Full featured session management, using whatever method you like. Many of the examples show the use of cookies, so you

Re: installation question again

2000-07-20 Thread G.W. Haywood
Hello again, On Wed, 19 Jul 2000, ROUSSY, ISABELLE wrote: doing make test I received : [snip] /usr/bin/perl t/TEST 0 Can't locate LWP/UserAgent.pm in @INC [snip] at t/TEST line 48. You really should get hold of LWP (libwww-perl) so that make test can do its stuff. and this bit of message

Apache::Session - expected behaviour?

2000-07-20 Thread Kenneth Lee
Hi all, I found that if I explicitly undef %session, CLEAR will be triggered before DESTROY clearing $self-{data}, so $self-save actually update nothing in the database: # Apache::Session ... sub CLEAR { warn "CLEAR!\n"; ... sub DESTROY { warn "DESTROY!\n"; ... # The

Re: Where are mod_perl coders?

2000-07-20 Thread Vivek Khera
"d" == davidu [EMAIL PROTECTED] writes: d and have not come across any that have real skills. Where do all the d mod_perl coders hang out? Well, this week we've been hanging out at the Perl conference 4.0 in Monterey. Many recruiters were hanging out here... --

Re: why would I use mod_perl instead of Perl ?

2000-07-20 Thread Vivek Khera
"o" == ozbcoz [EMAIL PROTECTED] writes: o or is that a "too big" question o I am coding in Perl - not well but adequately (I use PHP for anything o "hard"). Is there a compelling reason to switch to mod_perl ? It depends on how often your perl is called. if it is very infrequently, then it

Re: why would I use mod_perl instead of Perl ?

2000-07-20 Thread blue
On Thu, 20 Jul 2000, Vivek Khera wrote: o "hard"). Is there a compelling reason to switch to mod_perl ? It depends on how often your perl is called. if it is very infrequently, then it is not worht it, but if perl is used often, you will get a big win. never forget the infamous 'perl

Re: Where are mod_perl coders?

2000-07-20 Thread Matt Sergeant
On Tue, 18 Jul 2000, davidu wrote: Hi, Our company, like.com, has been looking for some experianced mod_perl coders. We have checked most of the major job sites, including guru.com and have not come across any that have real skills. Where do all the mod_perl coders hang out? Try

Re: Where are mod_perl coders?

2000-07-20 Thread Kevin Reichard
Stas' dancing skills?Any pix? ;) --k. Matt Sergeant wrote: On Tue, 18 Jul 2000, davidu wrote: > > Hi, > > Our company, like.com, has been looking for some experianced mod_perl > coders. We have checked most of the major job sites, including guru.com > and have not come across any that have real

Forbidden Error -- more info

2000-07-20 Thread Richard M. Lemanski
Hello all, I have re-checked my permissions in /home/httpd and both the mod_cgi and mod_perl directories and everything within is set to 755 root root so there should not be a problem. There is one thing that I recently noticed and maybe has something to do with this error. When I 'httpd -l'

Re: Where are mod_perl coders?

2000-07-20 Thread Matt Sergeant
On Thu, 20 Jul 2000, Kevin Reichard wrote: Stas' dancing skills? Any pix? ;) God I hope so! I think Ask managed to miss him, but Victor took some video (can you mpeg that Victor?) and some snaps for certain. Matt.

Re: Where are mod_perl coders?

2000-07-20 Thread Kevin Reichard
Stas may have been the most photographed person at the show. Ken Coar took some group shots of our dinner as well. Sadly, Stas did not dance on that occasion. --K. Matt Sergeant wrote: On Thu, 20 Jul 2000, Kevin Reichard wrote: > Stas' dancing skills? Any pix? ;) God I hope so! I think Ask

Re: Where are mod_perl coders?

2000-07-20 Thread Randal L. Schwartz
"Matt" == Matt Sergeant [EMAIL PROTECTED] writes: Matt On Thu, 20 Jul 2000, Kevin Reichard wrote: Stas' dancing skills? Any pix? ;) Matt God I hope so! Matt I think Ask managed to miss him, but Victor took some video (can you mpeg Matt that Victor?) and some snaps for certain. I got a few,

Re: Apache::ASP+

2000-07-20 Thread Paul Lindner
On Thu, Jul 20, 2000 at 03:10:15PM +0800, Kenneth Lee wrote: Hi all! Any one started to make one? It seems a good idea. Of coz it's not simple to build the whole complex platform (NGWS), but the concept of server-side object and the event driven model is too interesting to me. Actually I

Re: Apache::Session Math::Currency thawing issue.

2000-07-20 Thread Ken Williams
This is a followup to an old message from June 19, to tie up loose ends. A simple test case shows that the problem described here is a bug in either Storable.pm, overload.pm, or Perl. Freezing and thawing an object seems to destroy any overloaded operators of that object. I'm starting to

Re: Apache::ASP+

2000-07-20 Thread Kenneth Lee
See this link http://www.asptoday.com/articles/2712.htm Paul Lindner wrote: On Thu, Jul 20, 2000 at 03:10:15PM +0800, Kenneth Lee wrote: Hi all! Any one started to make one? It seems a good idea. Of coz it's not simple to build the whole complex platform (NGWS), but the concept

[ jobs ] Sonicbox mod_perl coders

2000-07-20 Thread Michael Blakeley
Sonicbox, Inc. http://www.sonicbox.com is hiring mod_perl programmers. Experience with HTTP, HTML, and the major mod_perl tools is assumed. Experience with SQL, PostgresQL, Solaris, and CVS is helpful, but not essential. The marketeers tell me that "Sonicbox makes listening to high quality

Persistant DB Connections

2000-07-20 Thread Mark D Wolinski
Okay, first, I have not read the manual completely... So, what I'm looking for is where can I find information on the following, if possible (I have both the Eagle and can look up the Guide as well)... I have an app that can't be run under mod_perl right now because it's awfully dirty.

RE: Where are mod_perl coders?

2000-07-20 Thread dreamwvr
Hi Jason, well sed and you need to leave dialogue open() to discussion ! disconnect() IYKW?M.. REgards, [EMAIL PROTECTED] On Thu, 20 Jul 2000, Jason Murphy wrote: "d" == davidu [EMAIL PROTECTED]

Re: Persistant DB Connections

2000-07-20 Thread Ken Williams
[EMAIL PROTECTED] (Mark D Wolinski) wrote: Okay, first, I have not read the manual completely... So, what I'm looking for is where can I find information on the following, if possible (I have both the Eagle and can look up the Guide as well)... I have an app that can't be run under mod_perl

Access Denied to Apache from client

2000-07-20 Thread Richard M. Lemanski
-- I am getting the Forbidden error... Here are the errors that were logged the other night when the probelm first started. I no longer have access to Apache from client. I have read all the documentation that I could find on it but I have turned up nothing. - Has anyone ran into this

Apache::ASP, newline conventions, and the Macintosh

2000-07-20 Thread Michael Houghton
Hi. I hope I'm not raising a well known bug (couldn't find mention of it on the lists), but I've encountered an issue with Apache-ASP and the macintosh. In order to keep my customers firmly at the centre of my design, I'm using a macintosh (GoLive 4) to edit the ASP templates in my current

Re: Apache::ASP+

2000-07-20 Thread Perrin Harkins
On Fri, 21 Jul 2000, Kenneth Lee wrote: See this link http://www.asptoday.com/articles/2712.htm He sure makes a lot of fuss over adding the functionality of HTML::FillInForms. The action = sub stuff doesn't look very difficult to me, but it also doesn't look like a significant

Re: Apache::ASP+

2000-07-20 Thread Dmitry Beransky
At 10:56 AM 7/20/00, you wrote: See this link http://www.asptoday.com/articles/2712.htm Very interesting (now I want to buy the enitre book and see what else is in there). There are some aspects of the new ASP I really like especially those targeted at improvements of the workflow

[OT] mod_rewrite

2000-07-20 Thread Jeff Jones
I know this is off the topic of modperl but if anyone knows of a good reference (book/webpage or whatever), I would appreciate it if you could pass those on. I am reading the URL rewriting guide at apache and I am just not finding everything I need. Any help would be greatly appreciated.

Re: [OT] mod_rewrite

2000-07-20 Thread Kenneth Lee
http://www.engelschall.com/pw/apache/rewriteguide/ Jeff Jones wrote: I know this is off the topic of modperl but if anyone knows of a good reference (book/webpage or whatever), I would appreciate it if you could pass those on. I am reading the URL rewriting guide at apache and I am just

[OT] mod_rewrite

2000-07-20 Thread Jeff Jones
It's the mod_rewrite guy again. Is there anyone who would be willing to provide some off list assistance? I just want to run a configuration by someone who knows more about this than I do and see if I am doing it right. Thanks again, Jeff Jones

Re: PerlRun question [RESOLVED]

2000-07-20 Thread Andrew Chen
Perrin, Ken, Honza, and all others that helped: The problem was actually that I wasn't clearing %INC properly after flushing out all the dirty modules. After doing that everything started working properly. So anyway, I wrote an Perl script and installed it as an PerlCleanupHandler. I stole code

Re: PerlRun question [RESOLVED]

2000-07-20 Thread Perrin Harkins
On Thu, 20 Jul 2000, Andrew Chen wrote: Another mod_perl success :) Congratulations! If you have a chance, you might want to write a brief desccription for the Success Stories page at http://perl.apache.org/stories/. - Perrin

Re: installation question again

2000-07-20 Thread Ged Haywood

mod_ssl and deprecated SSLDisable

2000-07-20 Thread Stephen Schaefer-NCS Sr SE
I built mod_ssl without any backward compatibility enabled, and that caused the mod_perl ``make test'' to fail, since SSLDisable is no longer recognized in this configuration. Simply removing the ``SSLDisable'' from the IfModule mod_ssl.c stanza in t/conf/httpd.conf line is sufficient for the

File uploads, Apache::Request

2000-07-20 Thread Lukas Ertl
I have a mod_perl app where I try to send mail via MIME::Entity, so that I can add attachments. To handle the file upload, I use Apache::Request, but I always get this error: read-open image.jpg: No such file or directory at /usr/local/lib/perl5/site_perl/5.005/MIME/Body.pm line 407. The code

ANNOUNCE: CGI::Application 1.2

2000-07-20 Thread Jesse Erlbaum
Version 1.2 of CGI::Application is now available via CPAN! Download site for CGI::Application: http://www.cpan.org/authors/id/J/JE/JERLBAUM/ Changes: - Modified load_tmpl() to pass extra params to HTML::Template-new_file(). - Fixed up the docs a bit. - Minor code

Re: File uploads, Apache::Request

2000-07-20 Thread Lukas Ertl
On Thu, 20 Jul 2000, Lukas Ertl wrote: I have a mod_perl app where I try to send mail via MIME::Entity, so that I can add attachments. To handle the file upload, I use Apache::Request, but I always get this error: read-open image.jpg: No such file or directory at

AB error - WARNING: Response code not 2xx (403)

2000-07-20 Thread Richard M. Lemanski
Josh, I was able to overcome the Forbidden error by uninstalling mod_perl, apache-manual, apache-dev, and then apache and then reinstalling it. I am working with RPM distributions so maybe that is why it is so flaky. The server craps out whenever I make a change to the httpd.conf file that

Re: Apache::AuthenDBI Intermittent problems

2000-07-20 Thread Mark Solomon
I still get that error: [Thu Jul 20 23:01:26 2000] null: mod_perl_push_handlers: Not a subroutine name or CODE reference!. [Thu Jul 20 23:01:26 2000] [error] Undefined subroutine Apache::AuthenDBI called. every few requests to authenticated areas of the site. Once more tidbit, it seems to be

Re: Apache::Session::MySQL problem

2000-07-20 Thread Tatsuhiko Miyagawa
Thu, 20 Jul 2000 14:29:40 -0700 (PDT) "Jeffrey W. Baker" [EMAIL PROTECTED] wrote: The problem is, if an acquired Session ID (from Cookie) is not stored in the session database, Apache goes like panic: POPSTACK Callback called exit. I know Apache::Session will die "Object does

Re: Apache::ASP+

2000-07-20 Thread Joshua Chamas
Kenneth Lee wrote: See this link http://www.asptoday.com/articles/2712.htm Paul Lindner wrote: Actually I think that Apache::ASP is coming right along with it's support of XML and the underlying behaviors. Thanks Paul, but there is always room for improvement eh? :) So, I

Re: Apache::ASP+

2000-07-20 Thread Joshua Chamas
Dmitry Beransky wrote: At 10:56 AM 7/20/00, you wrote: See this link http://www.asptoday.com/articles/2712.htm Very interesting (now I want to buy the enitre book and see what else is in there). There are some aspects of the new ASP I really like especially those targeted at