Re: how to disable mod_perl in a subdir?

2002-02-27 Thread Marc Slagle
Maybe you can try Apache::PerlRun instead of Apache::Registry for the directories that you need to run those scripts. The perldocs show how to set it up. Marc Slagle - Original Message - From: Dan Baker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 27, 2002 11:14 PM

Re: Site Host Providers that Support mod_perl?

2002-03-07 Thread Marc Slagle
://www.securelevel.com Marc Slagle

Re: modperl and SQL db select

2002-03-21 Thread Marc Slagle
in the past. Marc Slagle Secure Level 559 Liberty Hill, 2W Cincinnati, Ohio, 45210 (513) 665 4931 http://www.securelevel.com

Looking for more information...

2002-04-16 Thread Marc Slagle
In the next few weeks our radio show might be tackling mod_perl as a topic. I've read everything on the perl.apache.org site (and followed the links from there to take23.org, etc.) I'vereadthe mod_perl articles on perl.comas well. My question is, are there any other less-obvious places to

Re: Looking for more information...

2002-04-16 Thread Marc Slagle
What else do you need? There are two mod_perl books that you may wish to purchase and read, see the links on the site. Got the books too. I'm almost there, but could still use any nifty statistics, etc. Most of the stories I've seen are for defunct sites/companies. I'm creating a site to go

Re: Solaris 8 lockups

2002-04-18 Thread Marc Slagle
What version apache/mod_perl are you running? Also, were these intel solaris 7 servers or sparc? We've recently started trying to migrate a number of Solaris 7 machines to Solaris 8, and everything seemed fine for a while. We have each box running its own static, dynamic (mod_perl) and ssl

Re: Solaris 8 lockups

2002-04-18 Thread Marc Slagle
the configuration the same. (Assuming you can do that, some work environments are locked down to older versions of software.) It would be interesting to see what truss reported when you hit the server when it was not responding. - Original Message - From: Tom Servo [EMAIL PROTECTED] To: Marc Slagle

Re: Throttling, once again

2002-04-19 Thread Marc Slagle
When this happened to our clients servers we ended up trying some of the mod_perl based solutions. We tried some of the modules that used shared memory, but the traffic on our site quickly filled our shared memory and made the module unuseable. After that we tried blocking the agents

Re: Dynamically Changing the Document Root

2002-05-17 Thread Marc Slagle
to file translation stuff, where return DECLINED should let apache continue as normal (reading httpd.conf for finding paths, etc.) Marc Slagle

Possible module

2002-06-10 Thread Marc Slagle
locations. All I want to know is: Does anybody think this kind of module is useful enough to be made public? Any feedback would be great. Thanks. Marc Slagle

Re: How do I force a 'Save Window?'

2002-11-20 Thread Marc Slagle
This works for me: I'm using pdf stuff here, but you can set the content type to whatever you want. $r-content_type('application/pdf');$r-header_out("Content-Disposition" = "attachment; filename=order.pdf");$r-send_http_header(); Marc Slagle - Original Message

Reading XML input from flash

2002-12-09 Thread Marc Slagle
to be trying to send the data, but I cant capture it. If there's any sites or code snippets anyone can provide it would help out a lot. Thanks, Marc Slagle The Fulkert Consulting Group, Inc. 559 Liberty Hill 2W Cincinnati, OH 45210

RE: templating system opinions (axkit?)

2003-07-23 Thread Marc Slagle
moving to it now (XML::LibXSLT) and its making our life much easier. Our designer doesnt mind learning it, esp. after showing him what it can do. Marc Slagle Whapps, LLC. On Wed, 2003-07-23 at 10:27, Hauck, William B. wrote: Hi, I've been considering using a template system for an app that I'm

Re: Help wanted with locations / configuration

2003-09-08 Thread Marc Slagle
this to dispatch the request to the correct object needed to fulfill the request. (Our handler is configured at /, so we override the uri passed from the browser to /). Any other types you want can be added to this, I just threw the ones that seemed relevant to you. I hope this helps. Marc Slagle

Re: Help wanted with locations / configuration

2003-09-09 Thread Marc Slagle
didn't pass along in the snippet. Since we were already putting a translation handler in place to do our trickery there, it seemed to make the most sense to us to add the code to handle static requests there. By no means am I suggesting that this is the best way, but we're pretty happy with it. Marc