Re: Tips tricks needed :)

2001-12-19 Thread Perrin Harkins
ALWAYS reinitialize $Your::Singleton::ETERNAL on each query! mod_perl will *NOT* do it for you. If you want a per-request global, use $r-pnotes() instead of a standard perl global. Then mod_perl *WILL* do it for you. You might think 'ah yeah but it would be nice if

Re: Tips tricks needed :)

2001-12-19 Thread Perrin Harkins
No, it's nothing like Object::Registrar. It's like Class::Singleton. Okay, wishful thinking. I don't use Class::Singleton, but I have written my own versions of Object::Registrar a few times to accomplish the same goal. I don't like to make my core classes dependent on running in a mod_perl

Re: Tips tricks needed :)

2001-12-19 Thread Perrin Harkins
One thing I don't quite understand is the need to clear out a singleton. Why would a singleton need to hold transient state? It's good for holding something request-specific, like a user session.

Re: Tips tricks needed :)

2001-12-19 Thread Perrin Harkins
If you want a per-request global, use $r-pnotes() instead of a standard perl global. Then mod_perl *WILL* do it for you. True. But then you are using the Apache object and you're program doesn't work as a standard CGI anymore :( I handle this by chekcing for $ENV{MOD_PERL} and just using

Re: Tips tricks needed :)

2001-12-20 Thread Perrin Harkins
Like this? (using register_cleanup instead of pnotes) Better to use pnotes. I started out doing this kind of thing with register_cleanup and had problems like random segfaults. I think it was because other cleanup handlers sometimes needed access to these resources. - Perrin

Re: Tips tricks needed :)

2001-12-20 Thread Perrin Harkins
By the way, is there a perl module to do calculations with money? There's Math::Currency. - Perrin

Re: mixing cgi-bin mod_perl

2001-12-20 Thread Perrin Harkins
He wants to mix cgi-bin mod_perl by testing all of the scripts in cgi-bin and putting one cgi-script at a time into mod-perl folder. A very simple way to do this is to use Location directives to add them to PerlRun one at a time: Location /cgi-bin/some_scr.pl SetHandler perl-script

Re: What phase am I in?

2001-12-20 Thread Perrin Harkins
I've looked through the mod_perl docs and guide and am unable to find something that I can use in a handler to figure out what the current phase is. This seems like such an obvious thing that I can't believe it doesn't exist. Therefore I will conclude that I'm completely blind. Anyone care

Re: What phase am I in?

2001-12-21 Thread Perrin Harkins
I have the book but I don't always have it with me. That chapter is actually available for free on-line at http://www.modperl.com/. - Perrin

Re: Fast template system. Ideas,theorys and tools

2002-01-03 Thread Perrin Harkins
I looked at just about every template system on CPAN and came across text::template. Anyone use this one? I'd suggest you read my overview of templating options. It summarizes the top choices for templating tools, and talks about the strengths of weaknesses of Text::Template..

Re: Suggestions on an XML-RPC Service using modperl?

2002-01-03 Thread Perrin Harkins
Even then, I'd avoid disk-based cache systems, instead preferring Cache::* if it must be shared, or just global variables if it doesn't need to be. Cache::FileCache is disk-based, and it is the fastest of the Cache:: options for most data sets. There was a thread a little while back about

Re: Suggestions on an XML-RPC Service using modperl?

2002-01-03 Thread Perrin Harkins
As far as the cacheing goes, we have had extremely good luck with IPC::ShareLite used to share info across mod_perl processes. IPC::ShareLite is not as fast as some of the other options, especially when dealing with a large data set. The disk-based options tend to be faster. - Perrin

Re: WYSIWYG Template Editor

2002-01-03 Thread Perrin Harkins
Does anybody know a template engine, whose templates can be edited with a WYSIWYG editor (favourably dreamweaver) as they will look when filled with example data? HTML_Tree: http://homepage.mac.com/pauljlucas/software/html_tree/

Re: Fast template system. Ideas,theorys and tools

2002-01-03 Thread Perrin Harkins
What do you suggest as a good benchmark tool to use that would be 'smart' when testing a whole complete site. For pounding a bunch of URLs, the best are ab, httperf, and http_load. If you need something fancier that tests a complex series of actions and responses, there are several packages

Re: Apache::Session getting DESTROYed in wrong order

2002-01-03 Thread Perrin Harkins
The circular reference was the only way I could think of to force an object to be destroyed during global destruction. What happens if you use a global? Hmm, that may be - Mason does create more closures now than it used to. It seems like only 'named' closures would create this problem,

Re: Strange Apache 2.0 rewrite/proxy issue

2002-01-03 Thread Perrin Harkins
The 2.0.28 proxy uses mod_rewrite. When it rewrites url's internally to go to a static apache server all works great! Compare the headers sent by your static pages vs. the ones sent by your mod_perl pages. There might be something not quite 1.1 compliant about it that ticks of apache 2

Re: Sticky Pages.

2002-01-07 Thread Perrin Harkins
Ok, now i'm totally confused. Have you read the documentation for Apache::PerlRun? That might help. Try a perldoc Apache::PerlRun. 1. I have the following (and ONLY the following related to modperl) in my httpd.conf file (of course there are other regular apache directives too):

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
What is the difference between how a BEGIN block and an anonymous block in a module loaded into mod_perl? It looks to me like you are confused about our and BEGIN. If you change the our to a use vars I think it will fix your problems. This is not mod_perl-specific. Are anonymous blocks in

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
By load stage I mean BEGIN blocks, anonymous subroutines in packages loaded at startup, or even named subroutines called from startup.pl All of those things happen during server startup, before any request has been submitted. There is no form data at that time. Maybe if you could explain

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
On Tuesday 08 January 2002 08:16 pm, Dave Morgan wrote: I'm trying to populate select boxes(or other input types)for my HTML pages. An example would be a drop down list of states and/or provinces. A large number of these are populated from lookup tables in the dba and are relatively static.

Re: BSD::Resource und apache/mod_perl

2002-01-09 Thread Perrin Harkins
has anybody any ideas? Apache::Resource.

Re: BSD::Resource und apache/mod_perl

2002-01-09 Thread Perrin Harkins
PerlModule Apache::Resource PerlSetEnv PERL_RLIMIT_AS 32:64 PerlChildInitHandler Apache::Resource in httpd.conf, but Apache::Resource uses BSD::Resource in the end and thus its the same as use BSD::Resource; setrlimit RLIMIT_AS, 3200, 6400; The difference is that

Re: mod_perl framework + code reuse question

2002-01-09 Thread Perrin Harkins
There are many *.par pages (estimate: 70-100 when conversion is complete), and they all contain the following code with minor variations that could be made consistent (like what constants are imported, what modules are used, etc.). I'd like to find a way to prevent having that code (below)

Re: Configuration loading twice - how to cope?

2002-01-10 Thread Perrin Harkins
hrm. the problem might not be the double-loading of httpd.conf then - that's been around since, well, before most of us (I tracked that down to apache 0.9 once through list archives) more likely is this: http://marc.theaimsgroup.com/?l=apache-modperlm=100510779912574w=2 and the other

Re: mod_perl framework + code reuse question

2002-01-10 Thread Perrin Harkins
What are the basic advantages, disadvantages, and limitations of: (a) stuffing all this setup/framework code into a module (either a new module or subclassing Apache::RegistryNG as you mention below), versus, (b) stuffing it into a handler that all requests for a large subset of the pages on

Re: testing server response time

2002-01-10 Thread Perrin Harkins
After I set up my app (webtool.cgi) and created the single script version (bigtool.cgi), I ran this script on my machine and it showed that the single file was about 10-15% faster than the multiple modules. No offense, but your script must not have been doing much in this test. The

Re: testing server response time

2002-01-10 Thread Perrin Harkins
I was also thinking it would only make a small difference, but I see many perl/CGI scripts that boast 'all this functionality in a single script' They probably don't know any better, but to me that translates to giant bloated unorganized mess of a script. # BEGIN MOD_PERL CONFIG

Re: mod_perl framework + code reuse question

2002-01-11 Thread Perrin Harkins
For file organization, I'm thinking of making all page modules start with a common namespace substring (e.g. Projectname::Page) to distinguish them from the support (model) modules I like to name the top level modules SiteName::Control::* and the model modules SiteName::Model::*. Calling the

Re: formmail spammers

2002-01-11 Thread Perrin Harkins
I assume I'm not the only one seeing a rash of formmail spam lately. Is THAT what it is? I have a Yahoo mail account which someone has been sending literally thousands of messages per day to, CC'ing lots of people on every one, and they all appear to be from some kind of compromised form

Re: Unsetting standard response headers?

2002-01-13 Thread Perrin Harkins
I have noticed that Yahoo uses Location: header only for redirect responses and thought it may be good to save half of the bandwidth and do the same, as my particular script/server is serving redirects mostly. So my question is how to unset Date:, Server: and Content-Type: response headers?

Re: kylix: rad!

2002-01-14 Thread Perrin Harkins
GUI builders usually don't work for anything but the most trivial websites that could be written in anything and do fine. consider struts, a popular java mvc framework. it defines simple interfaces for things like actions and forms. does struts (and mvc in general) work for non trivial

Re: Request Limiter

2002-01-14 Thread Perrin Harkins
It's configurable so after exceeding a threshold the client gets content from the shared memory cache, and if a second threshold is exceeded (ok this guy is getting REALLY irritating) then they get the 'come back later' message. They will only get cached content if they exceed x number of

Re: my $var at file scope and __DATA__ sections under mod_perl

2002-01-14 Thread Perrin Harkins
Each time, the warn is for 'blah' because the value 'test' is never retained in $var. Is this intended behaviour? No, that should create a closure that keeps the value of $var. Are you sure these requests are all going to the same instance? Weird, it's like the MIME::Types::DATA handle just

Re: weird problem. Lost of the POST data

2002-01-16 Thread Perrin Harkins
Ummm yes... you know, I'm using the Template Toolkit. Try using the Perl stash instead of the XS stash, and see if your problem goes away. It seems as if the httpd child executes the processing of the template so fast that CGI.pm has no time to get the POST data. I don't think so. It

Re: weird problem. Lost of the POST data

2002-01-16 Thread Perrin Harkins
Well all my modules are written in Perl. When you say some C code you mean the C code in DBI, or CGI or Template, don't you? Yes. That's why I suggest trying Template with the Perl stash instead of the XS one. - Perrin

Re: Apache::Session getting DESTROYed in wrong order

2002-01-17 Thread Perrin Harkins
In a Mason context, which is where I'm using it, I do this in my top-level autohandler (ignore the main:: subroutines, they're just for pedagogy): %init # 'local' so it's available to lower-level components local *session; my $dbh = ::get_dbh; my $session_id =

Re: Apache::Session getting DESTROYed in wrong order

2002-01-18 Thread Perrin Harkins
I register a clean up handler to explicitly untie the session variable. I have found that it's safer to put things in pnotes than to use globals and cleanup handlers. We used a lot of cleanup handlers at eToys to clear globals holding various request-specific things, and we started getting

Re: slow regex [BENCHMARK]

2002-01-20 Thread Perrin Harkins
under mod_perl this takes 23 seconds. running the perl by hand (via extracting this piece into a seperate perl script) on the same data takes less than 1 second. Are you sure that the string you're regex'ing is the same in both cases? Why are you using the /o operator? CG isn't a variable,

Re: How to handle die

2002-01-20 Thread Perrin Harkins
Umm it didnt really answer my original query but I guess since no one has answered it - either I didnt present it correctly or no one has a answer to it. Or you posted it late on Saturday night on a weekend when most US workers have Monday off and may be travelling. Not everyone is on the

Re: handling eval in ePerl

2002-01-20 Thread Perrin Harkins
Umm I didnt mean to offend anyone in my previous posting - I did say I probably hadnt presented my situation properly. No problem, I just meant don't give up so quickly. Ofcourse you noticed I wrote ePerl/EmbPerl/Mason ?? I clubbed them together since I assume among other things you can

Re: handling eval in ePerl

2002-01-21 Thread Perrin Harkins
print STDERR blah blah blah is going to the browser but I am not really worried about it too much unless it is something I should worry about - anyone care to comment on that ? Printing error messages to the public is a potential security risk, so you have to decide how paranoid you want to

Re: Forking another process in Apache?

2002-01-21 Thread Perrin Harkins
I have a requirement to spin off a SQL loader process after a web page (a form which is qualified and accepted) has been submitted. Does it make sense, or more importantly, is it dangerous to apply a fork at the end of a module such as this: You're probably better off using a cleanup

Re: Cgi permission Questions

2002-01-21 Thread Perrin Harkins
Here is the problem: create.pl is owned by test and group test and has file permissions 755. When the create.pl script is run it becomes owner apache and group apache and has to create new files and directories on the machine. All of the new files and directories then become owner apache

Re: Cross-site Scripting prevention with Apache::TaintRequest

2002-01-22 Thread Perrin Harkins
What techniques do you use to insure that your application is not vulnerable? Usually I write application so that they do some processing, package up a chunk of data, and hand it to a template. With this structure, all you need to do is HTML-escape the data structure before handing it off, or

Re: Cross-site Scripting prevention with Apache::TaintRequest

2002-01-22 Thread Perrin Harkins
Yes and no. XSS attacks are possible on old browsers, when the charset is not set (something which is often the case with modperl apps) and when the HTML-escaping bit does not match what certain browsers accept as markup. Of course I set the charset, but I didn't know that might not be

Re: PerlRun Gotchas?

2002-01-23 Thread Perrin Harkins
A site I run uses a fair variety of different programs, the most common of which are run through Apache::Registry. To cut the memory overhead, however, less commonly used programs are run through Apache::PerlRun. I would not expect PerlRun to use less memory than Registry. Both the

Re: slow regex [BENCHMARK]

2002-01-23 Thread Perrin Harkins
Your system has to be swapping horribly. I bet that the ulimit for whoever apache is running as has the memory segment set super low. That's a possibility. I was also thinking that maybe mod_perl was built against a different version of Perl, possibly one that has a problem with this

Re: When to cache

2002-01-24 Thread Perrin Harkins
I'm interested to know what the opinions are of those on this list with regards to caching objects during database write operations. I've encountered different views and I'm not really sure what the best approach is. I described some of my views on this in the article on the eToys design,

Re: When to cache

2002-01-24 Thread Perrin Harkins
Perrin Harkins writes: To fix this, we moved to not generating anything until it was requested. We would fetch the data the first time it was asked for, and then cache it for future requests. (I think this corresponds to your option 2.) Of course then you have to decide on a cache

Re: performance coding project? (was: Re: When to cache)

2002-01-25 Thread Perrin Harkins
The point is that I want to develop a coding style which tries hard to do early premature optimizations. We've talked about this kind of thing before. My opinion is still the same as it was: low-level speed optimization before you have a working system is a waste of your time. It's much

Re: UI Regression Testing

2002-01-25 Thread Perrin Harkins
There are many web testers out there. To put it bluntly, they don't let you write maintainable test suites. The key to maintainability is being able to define your own domain specific language. Have you tried webchat? You can find webchatpp on CPAN.

Re: UI Regression Testing

2002-01-25 Thread Perrin Harkins
Gunther Birznieks writes: the database to perform a test suite, this can get time consuming and entails a lot of infrastructural overhead. We haven't found this to be the case. All our database operations are programmed. We install the database software with an RPM, run a program to

Re: performance coding project? (was: Re: When to cache)

2002-01-26 Thread Perrin Harkins
It all depends on what kind of application do you have. If you code is CPU-bound these seemingly insignificant optimizations can have a very significant influence on the overall service performance. Do such beasts really exist? I mean, I guess they must, but I've never seen a mod_perl

Re: AuthSession Manager [was] Apache::AuthCookie not set cookie really

2002-01-28 Thread Perrin Harkins
Application's main goals 1. Simple install. I don't want use cron jobs for cleanup - I think, it can be problem for some users. Most of the existing session stuff is written to leave cleanup to you. If you don't want to use cron jobs, you can do it in a cleanup handler, possibly exec'ing a

Re: Cache::FileCache issues

2002-01-28 Thread Perrin Harkins
[Mon Jan 28 14:52:35 2002] [error] mkdir : No such file or directory at /opt/gnu /depot/perl-5.6.1/lib/site_perl/5.6.1/Cache/FileBackend.pm line 220 Looks to me like your system has no mkdir command, or it isn't in the path, or it doesn't support an option that's needed (-p maybe?). Maybe

Re: Speed of downloading problem.

2002-02-04 Thread Perrin Harkins
I have Apache/mod_perl installed on a NT box, and I am allowing customers to do downloads of High-Resolution assets. My problem is the speed of downloads is about 1/3 slower than the same box running IIS. Can you post your httpd.conf? Or at least the parts of it about threads and processes?

Re: Speed of downloading problem.

2002-02-05 Thread Perrin Harkins
Here is the part of the httpd.conf that I believe you wanted to see. Hmmm... I don't see anything wrong with this. It seems like the problem is simply that Apache 1.3.x is not as fast as IIS at sending static files on NT. Not too surprising. I've been told that Apache 2 is significantly

Re: Weird mod_perl CGI.pm interaction (Bug?)

2002-02-10 Thread Perrin Harkins
Keep in mind I tried several version of CGI.pm. Where the problem is (and yes, I did hack CGI.pm and fixed it but felt it was unnessary to hack CGI.pm since it wasn't at fault and didn't want to break other working apps), e, the problem is in the read_from_client() call where CGI.pm

Re: mod_perl + UNIVERSAL

2002-02-12 Thread Perrin Harkins
I think the problem here is that mod_perl sets the assbackward flag when setting headers via send_cgi_header() (which CGI.pm does). Is this only an issue when using CGI.pm or PerlSendHeader then? I seem to recall having no trouble doing this from a normal handler. - Perrin

Re: mod_perl + UNIVERSAL

2002-02-12 Thread Perrin Harkins
However both applications make use of the UNIERVSAL package to create universally accessible methods (to return the current database handle for example) within the application. Better to put those into a package of your own and call them with fully-qualified names, or import them as Tatsuhiko

Re: mod_perl + UNIVERSAL

2002-02-12 Thread Perrin Harkins
A list of things I've noticed: * If you have two *different* modules which have the same name, then either one, or the other is loaded in memory, never both. This is dead annoying. I think Perl standard modules + CPAN modules should be shared, other modules which are specific to a given

Re: mod_perl + UNIVERSAL

2002-02-12 Thread Perrin Harkins
If the UNIVERSAL namespace is shared I would have thought one or the other (the last one?) would get the print_error sub and the other loses out but at some point they seem to coexist just fine. Whilst at some other point they as expected and one gets the others. Any theories? You have a

Re: Cookie as session store

2002-02-14 Thread Perrin Harkins
When the cookie is recovered, I simply decode, uncompress, thaw, check the digest, and thaw the inner object. It's really a good idea to do this even when the cookie is nothing but a session ID. A standard module for this like the one Jay mentioned would definitely be nice. My strategy for

Re: Cookie as session store

2002-02-14 Thread Perrin Harkins
I dunno... That sounds lie a LOT of overhead for just a session ID that's gonna result in server lookups too... It's really not. It adds a negligeble amount of time to the request. As Jeffrey pointed out, the functions he's using are all in C and very fast. Why verify session IDs? To make

Re: Mistaken identity problem with cookie

2002-02-15 Thread Perrin Harkins
I have a mysterious mistaken identity problem that I have not been able to solve. There are two common sources of this problem. One is an ID generation system that is not unique enough. Another is a bug in your code with globals (see the section of the Guide about debugging with httpd -X).

Re: [BUG] Memory Courruption (was: RE: [Q] SIGSEGV After fork())

2002-02-15 Thread Perrin Harkins
The only other way I can think of to solve this is to send my module list to this audience. Please find it, attached, with home-grown modules deleted. Have you tried debugging the old-fashioned way, i.e. remove things until it works? That's your best bet. I suspect you will find that you

Re: Mistaken identity problem with cookie

2002-02-15 Thread Perrin Harkins
2. I don't think it's a global vairable issue. Basically, I just grab the cookie by $r-header_in('Cookie') and decrypt it. It's what you do after that that matters. Besides, if it's global then the mistaken ID's should be from anywhere randomly. True, but random may not always look

Re: Image Magick Alternatives?

2002-02-18 Thread Perrin Harkins
So, is there an alternative - a module that will take an image (gif/jpeg) and generate a thumbnail from it? The GD module seems like a good candidate. There's also the Gimp modules. - Perrin

Re: Session refresh philosophy

2002-02-19 Thread Perrin Harkins
As I understand it, the session data is state which is committed to the database on each request (possibly). It would seem to me that instead of denormalizing the state into a separate session table, you should just store it in a normal table. The typical breakdown I use for this is to put

Re: [OT-ish] Session refresh philosophy

2002-02-19 Thread Perrin Harkins
And that is what I am doing for a small project I'm working on now. In my case, I'm not sure about the capabilities of the remote server, and I know for sure that I don't have a database available, so session information is saved via hidden form fields. It's primitive, but was actually a bit

Re: [OT-ish] Session refresh philosophy

2002-02-19 Thread Perrin Harkins
I built and use a module that encodes a session hash into a number of hidden fields with a security MD5 sum. Sounds a lot like CGI::SecureState. Have you ever looked at it? - Perrin

Re: [OT-ish] Session refresh philosophy

2002-02-20 Thread Perrin Harkins
When I used CGI::SecureState it gave the client a non-versioning (more on that later) key and stored the state information in the filesystem. Okay, I only looked at it briefly and thought it stored the data on the client. Your module is actually more like CGI::EncryptForm I think, but yours

Re: Calling an Apache::ASP page from an Apache::Registry script

2002-02-26 Thread Perrin Harkins
Andrew Ho wrote: I've been investigating other template systems to try to find similar functionality in an existing package for a non-Tellme related project and haven't been able to find any embedded-Perl solutions that can be called from a .pl and still have the benefits of template caching.

Re: how to pass data in internal redirects?

2002-02-26 Thread Perrin Harkins
F. Xavier Noria wrote: For example, in the hangman game in O'Reilly's book a controller would load a session from the cookie, process user's guest, modify the state and redirect the request internally to the view. It would probably be orders of magnitude faster to just call a template

Re: Can't retrieve form params using post methods, $r-notes and Apache::Request

2002-02-26 Thread Perrin Harkins
Mat wrote: Hi all, I have the following configuration. Location /my SetHandler perl-script PerlAccessHandler MyCheck PerlHandler MyHomePage /Location The PerlAccessHandler checks if the user cookie is valid and set a $r-notes() entry to pass the user id to the MyHomePage

Re: How to do connection pooling

2002-02-27 Thread Perrin Harkins
A.C.Sekhar wrote: How can I maintain the connections in perl? Which connections? Connections to a database? A web browser? Something else? - Perrin

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Andy Lester wrote: I want my MyFilter to process EVERYTHING that Apache spits out, whether with mod_perl, mod_php or just reading a .html file from the filesystem, especially the mod_php stuff. Assuming you mean you want to look at the generated content from non-mod_perl handlers and do

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Andy Lester wrote: So, my HTML::Lint checking is only going to work on output from the mod_perl chain. If you aren't terribly concerned about performance, there are several Apache::Proxy modules which should be easy to modify to put your lint checking in. Do a search for proxy on CPAN to

Re: Making perl handlers handle non-Perl

2002-02-27 Thread Perrin Harkins
Nico Erfurth wrote: your handler could tie the output-handle (is this possible?) and run a subrequest. Nope, not possible. You can only do that for mod_perl requests. - Perrin

Re: ANNOUNCE: Apache::Watchdog::RunAway v0.3

2002-03-04 Thread Perrin Harkins
Cahill, Earl wrote: Any chance of being able to define a runaway script based on percent of CPU or percent of memory used as well as time in seconds? This would be great for us Every so often we get a script that just starts choking on memory, and gets every process on the box swapping,

Re: Blank pages

2002-03-04 Thread Perrin Harkins
John E Leon Guerrero wrote: in my case, we had a number of scripts that would change STDOUT in some fashion (usually so they could set $|) but then die due to some error before resetting STDOUT back Interesting One safety measure to prevent this would be to install a cleanup handler that

Re: Fwd: Re: Problem installing Apache::Request

2002-03-05 Thread Perrin Harkins
Corey Holzer wrote: 1 Redownloaded the source tar ball for the version of Apache that I am running on my Linux RH 72 box 2 untar'ed the source tar ball for apache 3 Executed /configure --with-apache-includes=the /src/includes directory under the source dir for apache Between 2 and 3 you

Re: Multiple Location directives question

2002-03-05 Thread Perrin Harkins
Geoffrey Young wrote: John Siracusa wrote: I have something like: Location /foo SetHandler perl-script PerlHandler My::Foo /Location Location / SetHandler perl-script PerlHandler My::Bar AuthName Bar AuthType Basic PerlAuthenHandler My::Auth::Bar PerlAuthzHandler

Re: Breaks in mod_perl, works in Perl

2002-03-05 Thread Perrin Harkins
Mark Hazen wrote: I'm sorry I didn't explain an important component Since I am dealing with a few hundred requests per minute (this was got me onto mod_perl to begin with), then using DBI's ability to write to a file would vastly overwhelm my system Won't capturing that much data in RAM

Re: here is a good modperl question on perlmonk

2002-03-05 Thread Perrin Harkins
Medi Montaseri wrote: Caller can also buy some content management software like Interwoven's TeamSite product that provides a virtual workarea, for about $300,000 It's so easy and effective to run mod_perl on developers' personal machines, I think there's no excuse not to do it At eToys we

Re: mod_perl and perl RPMs and Oracle 9iAS

2002-03-06 Thread Perrin Harkins
Rafael Caceres wrote: I'm facing a dilemma here. We are testing an Oracle 9iAS installation (Apache 1.3.19, mod_ssl 2.8.1, mod_perl 1.25 as DSO, Perl 5.005_03) on Red Hat Linux 7.2, which itself came with Perl 5.6.0, and from your comments, that's bad.. First of all, if it's working for

Re: Where was that success story?

2002-03-06 Thread Perrin Harkins
Fulko Hew wrote: Hang on. I just found it (by way of Slashdot)... it was about eToys, October 17, 2001, its web 5 pages long, and mentions Randal Schwartz and Damian Conway. I knew I wasn't dreamming! Um, that was my article, and it certainly doesn't say anything like but in the end the

Re: Where was that success story?

2002-03-06 Thread Perrin Harkins
Kurt Hansen wrote: What I really want to know is: what ever happened to that eToys jingle that was on the commercials? That song is by Hawaiian performer Israel Kamakawiwo`ole. Here's a link to the CD: http://album.yahoo.com/shop?d=haid=1804600529cf=10intl=us - Perrin

Re: Document Caching

2002-03-06 Thread Perrin Harkins
Cahill, Earl wrote: I am finishing up a sort of alpha version of Data::Fallback (my own name) which should work very well for cache'ing just about anything locally on a box. We are planning on using it to cache dynamically generated html templates and images. You would ask a local perl

Re: Document Caching

2002-03-07 Thread Perrin Harkins
Cahill, Earl wrote: I would not be opposed to calling a different, more standard function to check the cache (set up in a more standard way), and then fetch accordingly. Look at how the Memoize module does it. You may be able to do something similar that would allow caching to be added

Re: PerlFreshRestart, mod_perl DSO, and Apache::StatINC

2002-03-07 Thread Perrin Harkins
Gordon Henriksen wrote: I see three options open to me: 1. static mod_perl w/ PerlFreshRestart Reloads %INC. downside: Heresay claims historical instablity. 2. dynamic mod_perl Tears down cleans up Perl interpreter on graceful restart. downside: Heresay

Re: PerlFreshRestart, mod_perl DSO, and Apache::StatINC

2002-03-07 Thread Perrin Harkins
Geoffrey Young wrote: we do that frequently here - 7 servers behind a BigIP. I've always wondered, though, whether this approach is foolproof for major upgrades for applications that maintain state - since a user might have a session created using a new-code box, then hit an old-code box on

Re: PerlFreshRestart, mod_perl DSO, and Apache::StatINC

2002-03-07 Thread Perrin Harkins
We had been using Option 1 for a long time we had absolutely no problems But doesn't it totally wreck your shared memory? For me that would make it unusable. I usually get a pretty large percentage of memory to be shared and count on that for getting maximum capacity from each box. -

Re: Response-Debug and IIS

2002-03-08 Thread Perrin Harkins
Mike Martinet wrote: Can anyone tell me if $Response-Debug from Apache::ASP is implemented in ActiveState Perl under IIS? Since your questions is about Microsoft ASP, you might want to ask it on a Microsoft ASP list. You already know that Apache::ASP supports it. - Perrin

Re: apache for windows/linux

2002-03-11 Thread Perrin Harkins
Wilfred Chan wrote: I am fairly new at this and I just wanted to ask what you guys think the differences are between running apache on Windows VS on linux. The bottom line is that mod_perl has better performance on Linux because of threading issues on Windows. There's a link to a writeup

Re: [OT?] What exactly is forwarding?

2002-03-12 Thread Perrin Harkins
Paul Lindner wrote: You'll find that $r-internal_redirect() is the mod_perl equivalent. Also Apache::ASP containts the Transfer() method which accomplishes the same thing. Personally, I always thought this was sort of a strange part of JSP. It really shows the page-centric thinking behind

Re: loss of shared memory in parent httpd

2002-03-12 Thread Perrin Harkins
Elizabeth Mattijsen wrote: Since Perl is basically all data, you would need to find a way of localizing all memory that is changing to as few memory chunks as possible. That certainly would help. However, I don't think you can do that in any easy way. Perl doesn't try to keep compiled

Re: Debugging mod_perl

2002-03-12 Thread Perrin Harkins
Nico Erfurth wrote: Today i had a big problem, and i don't know how to track it down. After changing one of my tool-modules apache segfaults on startup. So, how can i debug something like this? Do you know exactly what you changed? In that case, you have a small amount of code to look

Re: loss of shared memory in parent httpd

2002-03-12 Thread Perrin Harkins
Bill Marrs wrote: But... recently, something happened, and things have changed. After some random amount of time (1 to 40 minutes or so, under load), the parent httpd suddenly loses about 7-10mb of share between it and any new child it spawns. One possible reason is that a perl memory

Re: Apache::TicketAccess

2002-03-12 Thread Perrin Harkins
Ray Recendez wrote: I am new to perl/mod_perl and I am trying to implement secure authentication with expirable ticket/cookies on our website (Apache 1.3.9-Solaris 2.8). I am trying to use Apache::TicketAccess with Apache 1.3.9, modssl, openssl, and mod_ssl installed but I am having

<    2   3   4   5   6   7   8   9   10   11   >