[ANNOUNCE] Apache::App::Mercury (new module)

2003-07-19 Thread Adi Fairbank
http://adiraj.org/sw/Apache-App-Mercury/Apache-App-Mercury-0.80.tar.gz has entered CPAN as file: $CPAN/authors/id/A/AD/ADIRAJ/Apache-App-Mercury-0.80.tar.gz size: 38372 bytes md5: 96d5369bf2ad83168ce00829c0102357 No action is required on your part Request entered by: ADIRAJ (Adi

Re: [RFC] web-messaging application for mod_perl

2003-07-14 Thread Adi Fairbank
On, or in the near vicinity of Mon, 14 Jul 2003 18:49:58 +0300 Stas Bekman [EMAIL PROTECTED] has thus written: Probably the best bet is to give it some cool unique name, like Apache::AdiChat and then you are all set, since you are not going to take over any future framework/namespaces...

Re: [RFC] web-messaging application for mod_perl

2003-07-01 Thread Adi Fairbank
On, or in the near vicinity of Tue, 1 Jul 2003 11:23:00 +0200 Enrico Sorcinelli [EMAIL PROTECTED] has thus spoken: On Mon, 30 Jun 2003 12:57:00 -0700 Adi Fairbank [EMAIL PROTECTED] wrote: Apache::WebMessaging I am about ready to release an intraserver web-messaging application

[RFC] web-messaging application for mod_perl

2003-06-30 Thread Adi Fairbank
Apache::WebMessaging I am about ready to release an intraserver web-messaging application for mod_perl. A brief description of the app follows; I'd like to hear some comments from the mod_perl/Perl/P5EE community on: * is there anything like this already out there? * namespace suggestions (if

Re: Few Important Questions

2003-06-30 Thread Adi Fairbank
On, or in the near vicinity of Wed, 18 Jun 2003 18:34:09 -0700 (PDT) Mustafa Tan [EMAIL PROTECTED] has thus spoken: Another question is that, why hosting guys avoid using mod_perl. Is it just because mod_perl is memory hungry? One reason I've heard is because of namespace security issues.

full-featured online database apps

2002-04-24 Thread Adi Fairbank
Does anyone know of a good customizable, user-friendly, online database application, preferably mod_perl-based? I want to migrate a small Access database to MySQL with a web interface, for added features and room for growth. Has anyone come across a good open source project or toolkit that

Re: full-featured online database apps

2002-04-24 Thread Adi Fairbank
For example, what I'm looking for are other projects similar to Gedafe: http://isg.ee.ethz.ch/tools/gedafe/ but maybe with a more customizable front-end. -Adi

Re: loss of shared memory in parent httpd

2002-03-16 Thread Adi Fairbank
Yes, this is my theory also. I figured this out a while back, and started a thread on this list, but since then haven't had enough time to investigate it further. The thread is here: http://mathforum.org/epigone/modperl/wherdtharvoi which includes some helpful hints from Doug on how to call

[ANNOUNCE] ApacheBench 0.62 released

2001-12-04 Thread Adi Fairbank
In my ongoing effort to bring the ApacheBench module up to date with the ab distributed with Apache, here is another release. This one mainly incorporates * support for HTTP Keep-Alive feature, * support for HTTP HEAD requests, * global and per-run time limits, * accurate tallying of sent,

[ANNOUNCE] ApacheBench 0.62 released

2001-12-03 Thread Adi Fairbank
In my ongoing effort to bring the ApacheBench Perl module up to date with the ab distributed with Apache, here is another release. This one mainly incorporates * support for HTTP Keep-Alive feature, * support for HTTP HEAD requests, * global and per-run time limits, * accurate tallying of

Re: Apache Bench

2001-12-01 Thread Adi Fairbank
I got an e-mail a while back from one of the CPAN testers that my Perl API version of ApacheBench worked on Cygwin. I don't know how that compares to straight NT/2000, but you might try compiling ab with Cygwin. Since my code is based on ab, in theory ab should also work on Cygwin. You could

Re: [challenge] new mod_perl site

2001-11-14 Thread Adi Fairbank
Nick Tonkin wrote: No one doubts your commitment to mod_perl, or your hard -- and unpaid -- work on the guide and many other things. But if you want to be a leader who inspires people to collaborate and work as a team under your direction, you'd do well to work on bringing your people

[ANNOUNCE] ApacheBench 0.61 released

2001-10-22 Thread Adi Fairbank
entered CPAN as file: $CPAN/authors/id/A/AD/ADIRAJ/ApacheBench-0.61.tar.gz size: 54512 bytes md5: ea5c2e1ff8c1c455917bcad8b5d725e6 No action is required on your part Request entered by: ADIRAJ (Adi Fairbank) Request entered on: Tue, 23 Oct 2001 04:20:01 GMT Request completed: Tue, 23 Oct 2001 04

Re: [OT] Re: DB_File needs compatible versions

2001-10-02 Thread Adi Fairbank
I had this problem also with redhat 7.1, and I fixed it the same way. I believe it is caused by loading two different versions of the same shared object into the Apache webserver. In my case, I was loading one version (db2) of berkeley db with: LoadModule db_auth_module

Re: [OT] New Micro$oft vulnerability?

2001-09-18 Thread Adi Fairbank
I wish someone would just write a worm that would put these IIS machines out of their misery and stop causing the rest of us such a headache. Nick Tonkin wrote: Sorry for the off-topic post; there was a lot of discussion here of CodeRed and Reuven's module to report attempted attacks.

Re: Callback called exit. x 100000

2001-09-11 Thread Adi Fairbank
I had this problem a while back and it turned out to be an infinite loop in my code. I found it by writing in better logging mechanisms which pinpointed exactly where the infinite loop was. HTH, Adi Christoph Bergmann wrote: Hi... I have a problem with an apache_mod_perl-server which

Re: Apache::Session::File and free memory weirdness

2001-08-30 Thread Adi Fairbank
Perrin Harkins wrote: Odd thing #1: As it gets into evening time, load on the machine drops off and there are fewer httpd children running, but I am not seeing free memory return to that 1.3GB level. At most it comes back up to 400MB or so. I don't think the httpd children are

Re: ODBC for Apache

2001-07-27 Thread Adi Fairbank
Joshua Chamas wrote: Castellon, Francisco wrote: Hi I am running on Windows98SE, Apache 1.20, mod_perl 1.25, php 4.0.6, and have the latest Apache::ASP installed and have Activestate's Perl installed (build 626). I want to be able to access, Oracle, SQL and MSAccess databases as

Re: swapping of mod_perl parent process / mlockall()

2001-07-16 Thread Adi Fairbank
Doug MacEachern wrote: On Tue, 26 Jun 2001, Adi Fairbank wrote: If this is the case, it would be helpful to prevent the parent process from *ever* swapping to disk. The Linux kernel has a system call mlockall() which disables all memory paging for the current process

swapping of mod_perl parent process / mlockall()

2001-06-26 Thread Adi Fairbank
Is it correct that when the Apache/mod_perl parent process swaps to disk, a large part of it (swapped pages) becomes unshared? Even after the kernel restores the pages from swap, do they remain unshared? So once the parent process becomes unshared, new apache children that are spawned only

Re: Real Widgets and Template Languages

2001-05-23 Thread Adi Fairbank
Stephen, I read your proposal and I like it a lot. I will help filling out the HTML::Widget::HTML* space (in your package structure suggestion). However, I like Gunther's suggestion for a namespace of Widget:: better than HTML::Widget::, because it will not be exclusively HTML, but WML, JS10,

Re: Real Widgets and Template Languages

2001-05-22 Thread Adi Fairbank
Gunther, I have been interested in the concept of an HTML widget module for a while now. The reason being, my application currently generates all HTML using CGI.pm in a mod_perl handler OO-style design, and we are starting to notice patterns.. similar pieces of HTML that get generated over and

Re: an unusual [job request] + taking mod_perl to the commercialworld

2001-04-29 Thread Adi Fairbank
On Sat, 28 Apr 2001, Gunther Birznieks wrote: [text cut] So for Adi -- I think the messaging server is great and I am sure it is cool and works well. And I am sure there are people on this list who will benefit. But unless your company makes the healthcare system itself open source,

Re: mod_perl shared memory with MM

2001-02-28 Thread Adi Fairbank
Sean Chittenden wrote: Is there a way you can do that without using Storable? Right after I sent the message, I was thinking to myself that same question... If I extended IPC::MM, how could I get it to be any faster than Storable already is? You can also read in the data

Re: mod_perl shared memory with MM

2001-02-28 Thread Adi Fairbank
Sean, Yeah, I was thinking about something like that at first, but I've never played with named pipes, and it didn't sound too safe after reading the perlipc man page. What do you use, Perl open() calls, IPC::Open2/3, IPC::ChildSafe, or something else? How stable has it been for you? I just

[OT] Re: mkdir function syntax

2001-02-27 Thread Adi Fairbank
Chriss, Please mark your subject [OT] for off-topic in the future, as this is not a mod_perl question, but a general Perl question and probably should be taken to one of the comp.lang.perl.* newsgroups anyway. In the good natured spirit of the mod_perl community, I'll answer the question

mod_perl shared memory with MM

2001-02-27 Thread Adi Fairbank
I am trying to squeeze more performance out of my persistent session cache. In my application, the Storable image size of my sessions can grow upwards of 100-200K. It can take on the order of 200ms for Storable to deserialize and serialize this on my (lousy) hardware. I'm looking at RSE's MM

Re: mod_perl shared memory with MM

2001-02-27 Thread Adi Fairbank
Perrin Harkins wrote: Adi Fairbank wrote: I am trying to squeeze more performance out of my persistent session cache. In my application, the Storable image size of my sessions can grow upwards of 100-200K. It can take on the order of 200ms for Storable to deserialize and serialize

Re: [ANNOUNCE] Apache::SOAP 0.47 (mod_soap)

2001-02-24 Thread Adi Fairbank
Paul, I've done some work on Keith Brown's SOAP module, and I like its design, but one thing I noticed is that it is slow. Even under mod_perl, it can take up to 1 second(!) to serialize a large data structure. I believe the reason is that it makes method calls for every element in the Perl

[ANNOUNCE] ApacheBench 0.60

2001-02-23 Thread Adi Fairbank
The uploaded file ApacheBench-0.60.tar.gz has entered CPAN as file: $CPAN/authors/id/A/AD/ADIRAJ/ApacheBench-0.60.tar.gz size: 51190 bytes md5: e2325d7f89e32fecb6f76643ae38f7ed No action is required on your part Request entered by: ADIRAJ (Adi Fairbank) Request entered on: Fri, 23

Re: Response time under mod_perl

2000-12-07 Thread Adi Fairbank
Michael Fuhr wrote: On Fri, Dec 08, 2000 at 02:57:33AM -0200, Edmar Edilton da Silva wrote: I need to know the response time of a Perl script running under mod_perl. To do this I need a function that it's returns the current time of the system in milliseconds. Please, have anyone

Re: Apache User Creation

2000-12-01 Thread Adi Fairbank
Manhar, HTTPD-User-Manage is exactly what you're looking for. Get it from CPAN at: http://www.cpan.org/modules/by-authors/id/L/LD/LDS/HTTPD-User-Manage-1.54.tar.gz -Adi Manhar Goindi wrote: Hi, Are there any APIs available in Apache modperl which can be used to create Apache users in

Re: AuthCookie

2000-11-24 Thread Adi Fairbank
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:" header. If

Re: two identical directives in Perl configuration (doc patch included)

2000-11-18 Thread Adi Fairbank
Dave Kaufman wrote: "Adi Fairbank" [EMAIL PROTECTED] wrote: Dave Kaufman wrote: $Location{"blah"} = { require = "group payer_manager, payer_group demo" }; should do the trick. I wrote: Thanks, that fixed it. Actually, no that

two identical directives in Perl configuration

2000-11-17 Thread Adi Fairbank
Say I have a $Directory{} configuration in a Perl section like so: $Directory{"/home/httpd/html-ssl/demo"} = { SetHandler = "perl-script", PerlAuthenHandler = "Authen", PerlAuthzHandler = "Authz", require = "group payer_manager", require = "payer_group

Re: two identical directives in Perl configuration (doc patch included)

2000-11-17 Thread Adi Fairbank
Dave Kaufman wrote: i belive it is. in fact, i didn't realize specifing two require coditions (one group and one user) worked on *separate* lines :) something like: $Location{"blah"} = { require = "group payer_manager, payer_group demo" }; should do the trick. -dave Thanks,

Re: two identical directives in Perl configuration (doc patch included)

2000-11-17 Thread Adi Fairbank
Dave Kaufman wrote: i belive it is. in fact, i didn't realize specifing two require coditions (one group and one user) worked on *separate* lines :) something like: $Location{"blah"} = { require = "group payer_manager, payer_group demo" }; should do the trick. -dave I wrote: