Re: oracle : The lowdown

2000-01-11 Thread Michael
On Tue, 11 Jan 2000, John Armstrong wrote: Hello all- I just got the word from down high that VC's will freak out if they see we are using mysql and now we are looking at an Oracle solution. The product is a mid level mod perl application that will receive ~500,000 hits

RE: Set DocumentRoot from modperl

2000-03-28 Thread Michael
. That is what my work around covers. Michael [EMAIL PROTECTED]

newbie ApacheAuthCookie problems

2000-04-13 Thread Michael
r SetHandler perl-script PerlHandler Sample::AuthCookieHandler-login /Files /virtualhost Frustrated ! Michael [EMAIL PROTECTED]

Re: [input] mod_perl and ISPs in the real world

2000-06-28 Thread Michael
or general use. Michael [EMAIL PROTECTED]

Re: Graphs

2000-09-12 Thread Michael
interactive example output at: http://www.insulin-pumpers.org/hotwo/bexampl1.html and the real thing at http://www.insulin-pumpers.org/howto/basal.cgi Michael [EMAIL PROTECTED]

I'm missing something in Apache::Cookie

2000-09-15 Thread Michael
); gives an apparently empty hash, yet retrieving the headers via Apache::Table yields the correct results Cookie=foo=bar cook name val foo bar So what am I doing wrong with Apache::Cookie that keeps me from returning the cookie value. Michael

module.pm - module.so

2000-09-15 Thread Michael
rfs when all that is available is the module.so perldoc perlcc indicates that "use module;" should work Anyone actually doing this?? Michael [EMAIL PROTECTED]

RE: Undefined subroutine error (only now and then)

2000-09-28 Thread Michael
The subroutine is there (it executes in the first time). If I keep trying to reload the page, sometimes it works, sometimes it doesn't. The same error happens to other scripts, with different subroutines being called, but never happens if I run them from the command line (with the

how to do this??

2000-11-02 Thread Michael
e are many routines in "Module", there ought to be a better way to do this. Any ideas would be appreciated. One thought I had was to use a series of pointers \*sub1 = *routine; etc... where routine would identify the subroutine called. However, I don't know how to id the subr call. Michael [EMAIL PROTECTED]

Re: how to do this??

2000-11-02 Thread Michael
ines in "Module", there ought to be a better way to do this. Any ideas would be appreciated. One thought I had was to use a series of pointers \*sub1 = *routine; etc... where routine would identify the subroutine called. However, I don't know how to id the subr call. Michael [EMAIL PROTECTED]

Re: how to do this??

2000-11-04 Thread Michael
On Thu, 2 Nov 2000, Michael wrote: #handler package MyHandler; use Module qw(sub1 sub2); use Apache; use vars qw(@ISA) @ISA = qw (Module Apache); calling sub1 from apache using THIS handler named "MyHandler" results in Module::sub1 identifing the "ca

Re: AuthCookie solution

2000-11-15 Thread Michael
is real application for this sort of thing and I would like to figure out how to make it work. Any ideas why it does not? Michael [EMAIL PROTECTED]

Re: AuthCookie

2000-11-25 Thread Michael
Check your apache logs.. I don't think your server is actually sending the protected page, Netscape is showing you a cached version. I think this is a bug in Netscape 4.7 (for linux anyway), because that happens to me occasionally even with "Cache-Control: no-cache" and no "Expires:"

Re: Email (mod_perl) Apache module?

2000-12-16 Thread Michael
On Fri Dec 15 11:28:03 2000 -0800 brian moseley wrote: On Fri, 15 Dec 2000, Perrin Harkins wrote: Is there a reason you don't want to just hack on WING? It's a pretty powerful system and it was designed for mod_perl. Look it up on CPAN. it's an option, but it's got a

Re: http - https for authentication

2000-12-27 Thread Michael
Howdy, So, I am running a mod_perl/mod_ssl enabled Apache web server. The home page (and several other unprotected pages) need to listen on both the encrypted port 443 and non-encrypted port 80. However, I would like to force all authentication requests to go through the encrypted

Where can I find....

2000-12-28 Thread Michael
Where can I find documentation on the how to use all the values that appear in Apache::Constants The obviously do something, but what??? I figured out what OK, DECLINED do by reading the source, but what about all the rest. Are they described somewhere?? [EMAIL PROTECTED]

Re: Where can I find....

2000-12-28 Thread Michael
"Michael" [EMAIL PROTECTED] wrote: Where can I find documentation on the how to use all the values that appear in Apache::Constants The obviously do something, but what??? I figured out what OK, DECLINED do by reading the source, but what about all the rest. Are they described

Re: [OT] Problems preparing a module for CPAN

2000-12-28 Thread Michael
::Access', 'VERSION_FROM' = 'Access.pm', # finds $VERSION 'PREREQ_PM' = {'BZS::CryptHash'= '2.04'}, 'dist' = {COMPRESS='gzip', SUFFIX='gz'} ); Michael [EMAIL PROTECTED]

RE: Where can I find....

2000-12-29 Thread Michael
-Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 28, 2000 6:06 PM To: [EMAIL PROTECTED] Subject: Re: Where can I find Thanks, I have the complete list. It is given in man Apache::Constants What I'm trying to do

trouble with Rewrite

2000-12-30 Thread Michael
I have the following in a virtual host IfModule mod_rewrite.c RewriteEngine on RewriteLog "logs/rewrite.log" RewriteLogLevel 9 # redirect URL's on that exist on the secure side RewriteCond /rc/manage$2!-d RewriteRule ^(/rc/manage)(/.+).*

RE: How do you run libapreq-0.31/eg/perl/file_upload.pl ?

2001-01-04 Thread Michael
but maybe someone can provide me a small kick-start? Thank you short answer -- you don't need anything more that some simple scripting. Nothing at all in the server start up file. client html file form action=myupload.plx encoding ='MULTIPART/FORM-DATA' method=post input type=file

Re: seg faults/bus errors

2001-01-04 Thread Michael
Hi, I work on a high-traffic site that uses apache/mod_perl, and we're seeing some occasional segmentation faults and bus errors in our apache error logs. These errors sometimes result in the entire apache process group going down, though it seems to me that the problems

difference in 123, 124 = 124_01

2001-01-09 Thread Michael
using both https and http service, this clutters up the start up process and buries in 'noise' any real info that might help if there is a problem. Is there a way to turn it off??? Is it necessary or even truthfully reporting what is going on given the desirability of reusing code?? Michael [

Re: difference in 123, 124 = 124_01

2001-01-09 Thread Michael
Hi there, On Tue, 9 Jan 2001, Michael wrote: In upgrading to 1.24_01 I notice some warnings when the apache starts that I don't remember being present. Constant subroutine con redefined at /usr/lib/perl5/constant.pm line 91. I know it says perl5 in that path, but what version

foggy mind needs help

2001-01-10 Thread Michael
it to the run object. It clearly has marked the module as loaded, but now can not find the contents that were added to the package space via the eval when the second call occurs. What did I miss?? Michael [EMAIL PROTECTED]

Re: How do I debug failed tests? (error_log isn't helping)

2001-02-01 Thread Michael
. You might start by finding the variable VERBOSE in the makefile and setting it to '1' Michael modules/cgi.ok 5/5FAILED test 4 Failed 1/5 tests, 80.00% okay modules/perlrun.FAILED before any test output arrived modules/status..fetch /perl/perl-status failed

Re: ANNOUNCE: OpenInteract Web Application Server

2001-02-08 Thread Michael
On Tuesday 6 February 2001, at 21 h 57, the keyboard of Chris Winters [EMAIL PROTECTED] wrote: I'm jazzed to announce the public release of OpenInteract, an extensible web application framework using mod_perl and the Template Toolkit as its core technologies. Anyone compared it to

Re: lingerd mod_perl mod_ssl -- how about Ben-apache_ssl

2001-02-28 Thread Michael
. I'm running Ben's apache_ssl + mod_perl and am considering adding lingerd to the mix. I already have lingerd + apache running on the lite-weight end, and wonder if apache_ssl has similar problems BEFORE I mess up my production server. Michael [EMAIL PROTECTED]

Re: lingerd mod_perl apache_ssl

2001-03-01 Thread Michael
Vivek Khera wrote: mod_ssl alters the Apache API, so if you're doing the same then that's why they clash. Either that or you're patching something near what mod_ssl patches. Using apache_ssl requires no alteration of the current lingerd. Built it last night and am currently testing.

[JOB] wanted, SF bay area or telecomute

2001-03-07 Thread Michael
Short resume Michael Robinton 4600 El Camino Real #206 Los Altos, CA 94022 650 947-3351 days [EMAIL PROTECTED] Objective: Seeking a challenging environment where I can be a contributor to a successful business development, have fun and make a few bucks. Skills, last 5 years

Re: Long KeepAlives sensible?

2001-04-06 Thread Michael
but not terminate the child. Example -- http chat scripts. Basically it amounts to having KeepAlives off for the particular script but on for everything else. How does one accomplish this. Michael [EMAIL PROTECTED]

really dumb question maybe off topic

2001-06-15 Thread Michael
Have a script that was working on BSDI BSD/OS 3.0 recently upgraded sendmail Version 8.11.4 Compiled with: MAP_REGEX LOG MATCHGECOS MIME7TO8 MIME8TO7 NAMED_BIND NETINET NETISO NETUNIX NEWDB QUEUE SCANF SMTP USERDB XDEBUG permissions -r-sr-xr-x 1 root bin

simple question

2001-06-22 Thread Michael
when using mod perl to return plain text to the client how does one send without any headers in the response stream?? $r-send_fd(F) works fine for files, but how do you do it for dynamically generated content. Michael [EMAIL PROTECTED]

Re: simple question

2001-06-22 Thread Michael
; $r-send_fd(F); close F; pipe(R,W); print W some dynamically generated text\n; close W; $r-send_fd(R); close R; Michael wrote: when using mod perl to return plain text to the client how does one send without any headers in the response stream?? $r-send_fd(F) works

Re: simple question

2001-06-22 Thread Michael
:, Location: and Content-type: just as mod_cgi does, then calls $r-send_http_header(). Example of use: but without the call to $r-send_http_header() Michael [EMAIL PROTECTED]

Re: simple question

2001-06-22 Thread Michael
This might help, in you httpd.conf file set this PerlSendHeader Off Tor. That messes up all the standard responses. I have a work around now -- naturally it came to me moments after I posted don't know if this is correct so to speak, but it works fine.

I must be doing something dumb

2001-09-19 Thread Michael
/apache/bin/apachectl start: httpd could not be started This has got to be some kind of cockpit trouble, but it is not comming to me. Regular PerlHandler statements work just fine. Michael

Re: I must be doing something dumb

2001-09-19 Thread Michael
U PerlFixupHandler not PerlFixUpHandler # ./httpd -L | grep Fix PerlFixupHandler (mod_perl.c) the Perl Fixup handler routine name aah.! Thanks, I new it was DUMB but just couldn't see it. Michael [EMAIL PROTECTED]

Re: New Micro$oft vulnerability?

2001-09-20 Thread Michael
file with a single line Include /usr/local/apache/conf/virus.pl Michael [EMAIL PROTECTED]

Re: [OT] Perl daemons (was Re: Excellent article on Apache/mod_p

2001-10-23 Thread Michael
that support automatic updates for a variety of speciality web sites that reside on our servers. many of these processes are spread across multiple machines, each doing their little piece to complete the puzzle -- all written in perl for the stand-alones or mod_perl for the web apps. Michael

ANNOUNCE LaBrea::Tarpit-0.02

2001-12-10 Thread Michael
the syslog files on an as needed basis. If you plan to create web page reports, the daemon model will use less system resources in the long run and avoids running syslog with the high volume output of LaBrea. enjoy, Michael [EMAIL PROTECTED]

Re: Problem With DB_File Installation On Red-Hat Linux 7.1

2002-03-15 Thread Michael
/BerkeleyDB.4.0/lib/libdb.so That's it Michael Robinton BizSystems 4600 El Camino Real - Suite 206 Los Altos, CA 94022 Tel: 650 947-3351 Fax: 650 947-3356 [EMAIL PROTECTED]

[mp2] APR::Socket::recv set read timeout ?

2002-12-27 Thread Michael
then the connection will be closed. I have tried alarm/die pair but it was a failure. Any idea? Thanks in advance. Michael

Re: [mp2] APR::Socket::recv set read timeout ?

2002-12-28 Thread Michael
Michael wrote: Hi all. As suggested by Geoff and Stas, I am trying out modperl2.. Now I have some questions: i) with Apache::CommandServer (can be found at http://perl.apache.org/docs/2.0/user/overview/overview.html#toc_Protocol_Mod ules_with_mod_perl_2_0), I setup everything

privileged execution

2003-07-29 Thread Michael
I have a web application for that needs to execute a privileged command on its host for administrative purposes. Can someone suggest a good solution that will allow 'nobody' to execute the script command but still keep it secure from other users on the same host. Thanks. [EMAIL PROTECTED]

Re: privileged execution

2003-07-30 Thread Michael
Mike P. Mikhailov wrote: Hello Michael, Wednesday, July 30, 2003, 7:32:23 AM, you wrote: M I have a web application for that needs to execute a privileged M command on its host for administrative purposes. Can someone suggest a M good solution that will allow 'nobody' to execute

Re: Ticket/cookie based authentication for mod_perl and static frontend

2003-08-27 Thread Michael
I have, simple as it may be. -- Michael Stella | Sr. Unix Engineer / Developer | http://www.thismetalsky.org Knowledge is power. Power corrupts. Study hard. Be Evil. - Thyra -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

Re: Ticket/cookie based authentication for mod_perl and static frontend

2003-08-27 Thread Michael
? Interesting... Does that work? -- Michael Stella | Sr. Unix Engineer / Developer | http://www.thismetalsky.org If Bill Gates had a nickel for every time Windows crashed... ..oh wait, he does. -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist

Re: Ticket/cookie based authentication for mod_perl and static frontend

2003-08-27 Thread Michael
the client down to the backend software. I could still be way off here though. -- Michael Stella | Sr. Unix Engineer / Developer | http://www.thismetalsky.org -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html

using -| construct

2003-08-29 Thread Michael
but fails in modperl (apache 1x). The problem is that the initial read pipe apparently fails to open under modperl. Is there a workaround for this? or am I just missing something simple? Michael [EMAIL PROTECTED] -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http

Re: $r-headers_out Location and Set-Cookie

2003-09-05 Thread Michael
= $location); return REDIRECT; I don't know if it's 100% correct, but it works quite well for me. I've also used $r-internal_redirect($location) for some things, but I don't think that's appropriate here. -- Michael Stella | Sr. Unix Engineer / Developer | http://www.thismetalsky.org

Re: $r-headers_out Location and Set-Cookie

2003-09-06 Thread Michael
:) Oh! I totally missed that you're using Apache::Registry. I'm not sure the best way to do it with that, sorry. -- Michael Stella | Sr. Unix Engineer / Developer | http://www.thismetalsky.org All I want out of the Universe is 10 minutes with the source code and a quick recompile. - unknown

Re: httpd.conf problem.

1999-10-08 Thread Michael Hall
On Fri, Oct 08, 1999 at 04:25:39PM +0200, Terje Malmedal wrote: Inside a Perl section I want to configure mod_rewrite dynamically, this works: $RewriteRule = "/cgi-bin/printenv /cgi-bin/slave.pl [PT]"; If I do this: $RewriteRule = "/cgi-bin/printenv /cgi-bin/slave.pl [PT]";

Re: httpd.conf problem.

1999-10-08 Thread Michael Hall
On Fri, Oct 08, 1999 at 11:54:58AM -0700, Cliff Rayman wrote: I've never used perl sections, but unless $RewriteRule is some magic variable, the second assignment simply overwrites the first one. Sorry for my previous post, I see the problem now after re-reading things. At first glance I

Re: authentication via login form

1999-10-11 Thread Michael Peppler
IP address for requests coming from the same physical client (some of AOLs proxies work that way, if I remember correctly...) Michael -- Michael Peppler -||- Data Migrations Inc. [EMAIL PROTECTED]-||- http://www.mbay.net/~mpeppler Int. Sybase User Group -||- http://www.isug.com Sybas

JOB: perl work in London

1999-10-14 Thread Michael Smith
interactive investor is an internet-based financial services company. We're looking to expand our technical team by the recruitment of one (or more) developers. Though we're looking for people with general technical abilities, out development effort is currently focussed around perl, mainly

Re: More on web application performance with DBI

1999-10-15 Thread Michael Peppler
. Some databases doesn't support caches of prepared plans. PostgreSQL for example. Or Sybase. Though with Sybase you could open multiple connections to achieve the same result (at the risk of getting deadlocks depending on what you are trying to do!) Michael -- Michael Peppler -||- Data

Re: More on web application performance with DBI

1999-10-29 Thread Michael Peppler
Greg Stark wrote: *** From dbi-users - To unsubscribe, see the end of this message. *** *** DBI Home Page - http://www.symbolstone.org/technology/perl/DBI/ *** Tim Bunce [EMAIL PROTECTED] writes: On Mon, Oct 18, 1999 at 07:08:09AM -0700, Michael Peppler wrote: Tim Bunce writes

Re: More on web application performance with DBI

1999-10-29 Thread Michael Peppler
Greg Stark writes: Michael Peppler [EMAIL PROTECTED] writes: Greg Stark wrote: Actually not - Sybase creates a temporary stored proc for each prepared statement, so it's equivalent to using stored procedures. Heh neat, is that DBD::Sybase or the server that's doing

Re: LOcking help reqd

1999-10-30 Thread Michael A. Chase
There is a section on problems with file locking in perlfaq5.pod. You can read this section of the fine manual that comes with Perl by running 'perldoc perlfaq5'. To see how to commit and rollback, run 'perldoc DBI' and read the fine manual. -- Mac :}) ** I may forward private database

mod_perl programming logic error

1999-11-02 Thread Michael Douglass
} I look forward to any comments you have on this; including "you've missed the point of the function entirely" if that is the case. :) -- Michael Douglass Texas Networking, Inc. Any sufficiently advanced bug is indistinguishable for a feature. -- from some indian guy

Eagle Book - mod_hello.c, hello.pl :)

1999-11-29 Thread Michael Dearman
out buy following some of the questions I've seen here. But... H1Hello $ENV{REMOTE_HOST}/H1 The remote host doesn't show. Printing out the %ENV, it tain't there. But where does Perl get it. From CGI.pm (which is installed) or where? Thanks, Michael Dearman "I'd give my right arm to be ambidex

Re: Eagle Book - mod_hello.c, hello.pl :)

1999-11-29 Thread Michael Dearman
Ofer Inbar wrote: Michael Dearman [EMAIL PROTECTED] wrote: I've come close to figuring this one out buy following some of the questions I've seen here. But... H1Hello $ENV{REMOTE_HOST}/H1 -schnip- normally gets out of the environment. Remember, mod_perl is not CGI (although

Re: Eagle Book - mod_hello.c, hello.pl :)

1999-11-30 Thread Michael Dearman
Gerd Kortemeyer wrote: Michael Dearman [EMAIL PROTECTED] wrote: I've come close to figuring this one out buy following some of the H1Hello $ENV{REMOTE_HOST}/H1 Stas Bekman wrote: This is an easy prove that %ENV is set (while not all variables are present as with mod_cgi

Re: mod_perl Programmers demand is going up...

1999-12-03 Thread Michael Dearman
"G.W. Haywood" wrote: On Fri, 3 Dec 1999, Robin Berjon wrote: That takes a strong logo and... possibly a more artistic name for mod_perl? The Eagle book doesn't have it on it's cover though, Well, actually, it does... on the first line, but who cares? so it might be possible if

Re: mod_perl Programmers demand is going up...

1999-12-03 Thread Michael Dearman
Randy Harmon wrote: Um, isn't that animal taken by O'Rielly? The O'Reilly Eagle is a Tawny Eagle. Thar be golden, spotted, bald, imperial, harpy ... well, plenty to go around. Still, it'd be nice to be able to use The Eagle. Logo promotes the book. To honor the first tome of mod_perl. Book

Re: PerlFreshRestart and %INC

1999-12-04 Thread Michael Dearman
/DBI was not loaded until a connection was attempted by DBI.pm. Would appreciate a heads up on what doc that was. Can't find it again. *sigh* Thanks, Michael Dearman

Re: Logo / brand

1999-12-05 Thread Michael Dearman
Victor Zamouline wrote: Talking about "let's do something" topics on the mod_perl list is a waste of time, unfortunately... The motto of this list regarding new things is "think it, implement it and give it"... This is somewhat too straightforward, Stas. Look - I only suggested there

Re: Name / brand overview version 2

1999-12-06 Thread Michael Dearman
Another Eagle. http://www.inficad.com/~mdearman/ Wife's working on a colored feather. It had one on each wing tip. But one fell out. M. D.

Re: calling htpasswd from perl ...

1999-12-09 Thread Michael Robinton
you use the crypt lib and do a dual password entry. no confirmation is needed if the two passwords match. Everything is handled by the perl script, you don use htpasswd. Crypting is very straightforward. [EMAIL PROTECTED] (in palo alto) On Thu, 9 Dec 1999, dave_dunstan wrote: Hi gang, I

Newbie: Running script using Apache API

1999-12-10 Thread Michael Dearman
Howdy all, Trying to run a script from the Eagle Book (ch.4 Example 4-14) Using the Apache API, so it looks like: #!/usr/bin/perl -w # file perl/hello3.pl use strict: my $r- = Apache-request; $r-content_type('text/html'); $r-send_http_header; return OK unless $r-header_only; . . . And so on.

Re: Newbie: Running script using Apache API

1999-12-10 Thread Michael Dearman
Jay J wrote: - Original Message - From: "Michael Dearman" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 10, 1999 5:35 AM Subject: Newbie: Running script using Apache API Howdy all, Trying to run a script from the Eagle Book (ch.4 Example 4-1

Re: Newbie: Running script using Apache API

1999-12-10 Thread Michael Dearman
Ah... So apparently I just got to get Apache::Constants to pick up the 'OK'. Otherwise it sees it as a bareword. OK, got that 'OK' is an Apache return code. *bow* M. Dearman

Re: Newbie: Running script using Apache API

1999-12-10 Thread Michael Dearman
Prakash Kailasa wrote: Hi Prakash, Well. It's example 4-14, on page 146 I have a march 1999 first edition. You mean there's already a second edition!? It's definitely a 'return OK unless' for mine. Thanks, M. Dearman I just went back and checked again and _again_. I am

Re: Book: guestbook.cgi

1999-12-12 Thread Michael Dearman
Spotted this sub view_guestbook { my $show_sign_button = shift; print start_form, submit(-name = 'Sign Guestbook'), end_form if $show_sign_button; ... changed to submit(-name = 'action', -value = 'Sign Guestbook'), And at least the forms

Re: Limiting CPU (was Re: embperl pages and braindead sucking robots)

1999-12-16 Thread Michael Plump
going to be very effective, anyway. -- Michael Plump | [EMAIL PROTECTED] | email me about making $ selling snorks The ultimate Joe Dietz repository: http://www.skylab.org/~plumpy/dietz.txt

problem with Apache::DBI

2000-01-06 Thread Michael Baxter
I've posted this to comp.lang.perl.modules but got no response. Perhaps you can help. I've been accessing a mysql db with (non-mod)perl/cgi. I've installed mod_perl as per the eagle book (right down to the suggested directory layout) and have run examples 2.1 and 2.3, so I'm assuming

Re: Apache::Registry and -M

2000-01-11 Thread Michael Hall
On Tue, Jan 11, 2000 at 05:18:00PM -0800, Jeffrey W. Baker wrote: From my quick look at Registry.pm it looks like there's no way to disable the feature where a script will be re-compiled if it changes on disk. Is this correct? This is a problem if I update both the main script, and

cant call bytes_sent.. solved!

2000-01-25 Thread Michael schout
Okay. I solved my problems with CGI::Carp complaining and httpd not starting. I had neglected to install a few extra modules on the second machine that I needed, and startup.pl was bailing out. Consequently, CGI::Carp had been pulled in, so that tries to run fatalsToBrowser.. But since its

Re: Apache::DBI and Sybase

2000-01-28 Thread Michael Peppler
ation or other error conditions. Also make sure you're not filling up tempdb or your log. Again - if the log or tempdb fills up you should normally get an explicit message to that effect. Michael -- Michael Peppler -||- Data Migrations Inc. [EMAIL PROTECTED]-||- http://www.mb

Re: Compiling mod_perl as a DSO? (fwd)

2000-01-30 Thread Michael Robinton
together with other modules. Michael

Re: runaway httpd processes

2000-02-01 Thread Michael Robinton
There are a large number of happy, silent Apache::Session users. Yes, I am a silent and happy Apache::Session user. You're right Jeffrey, happy users should not be silent. Ditto that. Have Apache::Session serving content for a dynamic chat page. It gets hit every 30 - 45 sec by every

Re: ANNOUNCE: Apache::Filter 1.06

2000-02-02 Thread Michael schout
Ken Williams wrote: Changes: - Added 'handle' parameter to filter_input(), which lets callers open the input filehandle themselves. [[EMAIL PROTECTED] (Vegard Vesterheim)] Hi Ken. I've figured out that using this, I can *cheat* and get Apache::Filter to work with my handler

[JOBS] Global Knowledge Group Inc.

2000-02-04 Thread Michael schout
Hi! Here is a job posting from the company I work for. If anyone here has any general questions, you can just email me, otherwise, you can apply by sending your information in to Global Knowledge Group as described at the end of the posting. Mike - We are looking for several mod_perl

Re: Site unique MAC secret

2000-02-09 Thread Michael Peppler
Bill Jones writes: hostid is read-only, near as I can tell. I seem to remember seeing some code that lets you change the hostid (at least on a Sun), possibly via the PROM monitor. Michael -- Michael Peppler -||- Data Migrations Inc. [EMAIL PROTECTED]-||- http://www.mbay.net

Re: mod_perl with authen::Smb

2000-02-11 Thread Michael Parker
-user work currently require valid-user /Directory What you changed in AuthenSmb.pm is an EXAMPLE. You should cut and paste that example into your httpd.conf file and change the values there. You shouldn't have to edit the AuthenSmb.pm module. Michael

Re: mod_perl with authen::Smb

2000-02-11 Thread Michael Parker
On Fri, Feb 11, 2000 at 11:02:37AM -0600, Michael Parker wrote: On Thu, Feb 10, 2000 at 08:05:36AM -0800, Sambit Nanda wrote: and the file AuthenSmb.pm file Where i mentioned the PDC and WorkGroup name Directory /foo/bar # This is the standard authentication stuff

Re: Embperl segfaulting under perl 5.6.0

2000-03-30 Thread Michael schout
Doh! I just checked the development version of HTML::Embperl, and this is fixed in there. Gerald: Could we patch this fix in to the HTML::Embperl stable tree and get a new stable release? I would like to avoid running the beta version of Embperl on a production site :). The patch in question

Re: authenticated user

2000-04-04 Thread Michael Finke
; my ($res, $sent_pwd) = $r-get_basic_auth_pw; return $res if $res; #decline if not Basic my $user = $r-connection-user; It works well for me, even if it might not be the most efficient way. It's probably cribbed out of the eagle book, I never claimed it was original -- Michael Finke

Re: Apache::Request

2000-04-12 Thread Michael hall
On Tue, Apr 11, 2000 at 11:52:44PM -0700, John S. Evans wrote: I saw (in the code) that there's one open file per uploaded file. That should be fine. I just need to find out if they're getting closed correctly. What is "lsof"? 'LiSt Open Files', its really a handy tool for diagnosing.

Re: PHP is breaking Sybase::DBlib

2000-04-14 Thread Michael Peppler
AAAGH. Do you happen to have libdb (berkeley DB) linked in to the first mod_perl binary? libdb.a and SYbase DBlib both have a dbopen() function, and that causes some (obvious) problems. Michael -- Michael Peppler -||- Data Migrations Inc. [EMAIL PROTECTED]-||- http://www.mbay.net

apache 1.3.12 make failure with mod_perl 1.2.2

2000-04-14 Thread Michael Moen
Hi Folks- I tried searching the archives and the only thing I found close to this was re-building perl dynamically, I (think) I got this done, although I could be wrong. I will include any output I think might be relevant. Any suggestions would be greatly appreciated. Thanks- Michael mod_perl

XML::Parser causing SEGFAULT in Apache under mod_perl

2000-04-18 Thread Delaporta, Michael
can't use). No mention of the actual problem/solution was mentioned. Is anyone else experiencing this problem, and does anyone have a solution I can apply to the XML::Parser 2.28 source? Any info would be greatly appreciated. Thanks. -Michael-

Re: [OT] Proxy Nice Failure

2000-04-21 Thread Michael hall
On Sat, Apr 22, 2000 at 12:28:41AM +0300, Stas Bekman wrote: I like the mod_proxy module in reverse httpd accel mode, but am interested in having some nicer failure capabilities. I have hacked in this kind of stuff before but was wondering if anyone had any official patch for

mod_perl 2.x/perl 5.6.x ?

2000-04-22 Thread Michael hall
I'm more of a perl end user and plead ignorance in actually understanding what goes on behind the scenes. In the process of considering upgrading to perl 5.6 and according to a recent message I see its going to be required for mod_perl 2.x anyways so I guess its a good time to start migrating in

Re: mod_perl 2.x/perl 5.6.x ?

2000-04-22 Thread Michael hall
On Sat, Apr 22, 2000 at 11:59:58AM +0200, Eric Cholet wrote: though. Can anybody in the know, shed some light on this, just trying to save some work down the road as I'd like to upgrade to the perl 5.6 stuff now and use it with my existing mod_perl (I already use the CVS version and I

Re: Implementing security in CGI

2000-04-22 Thread Michael Schout
On Thu, Apr 20, 2000 at 12:15:16PM -0400, DeWitt Clinton wrote: The secure session has the following properties: *) The user is able to initiate a secure session by providing proper credentials (i.e., a username and password pair) via a login process. *) The user is able to terminate the

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-22 Thread Michael Schout
On Thu, Apr 20, 2000 at 02:16:09PM -0700, Doug MacEachern wrote: On Tue, 18 Apr 2000, Michael J Schout wrote: Apache-TicketAccess-0.10.tar.gz cool, but, there's already a module named Apache::TicketAccess, listed in the apache-modlist.html: TicketAccess bdpOTicket based

segfault in DSO mod_perl 1.23 (perl 5.6.0) with apache-1.3.12

2000-04-22 Thread Michael Poole
is "dPPDIR;" However, r-per_dir_config is NULL, so the get_module_config() call there ends up dereferencing a NULL pointer to generate the SEGV. Any hints on what I'm doing wrong, or how to fix this? Michael (please cc me on any responses; I've just now subscribed to the list)

Re: segfault in DSO mod_perl 1.23 (perl 5.6.0) with apache-1.3.12

2000-04-25 Thread Michael Poole
Doug MacEachern [EMAIL PROTECTED] writes: On 22 Apr 2000, Michael Poole wrote: I get a segfault on the first page access to Apache (it's just a request for / on the server). Backtrace: ... That line of mod_perl.c is "dPPDIR;" However, r-per_dir_config i

  1   2   3   4   5   >