Apache crashes relatively often

2009-06-17 Thread fREW Schmidt
ore explicit, it's not in a virtual host or anything like that. We are running apache on a Windows server, so if that could be part of the issue let me know. Any help at all would be very much appreciated. -- fREW Schmidt http://blog.afoolishmanifesto.com

Weird issue with Mod perl, apache 2.2, perl 5.8, and windows

2009-03-05 Thread fREW Schmidt
r: http://dev.chemicalinfo.com/_gic/main.plx (I added newlines for readability). All of the files referenced exist and the code seems right, but I am clearly doing something wrong here. Any tips? Thanks! -- fREW Schmidt http://blog.afoolishmanifesto.com

Re: unsubscribe

2009-01-20 Thread fREW Schmidt
> How many times to people have to tell you to look at the > headers of the e-mail for the list management addresses? > --mark-- When using gmail it's not exactly obvious. I agree with someone who posted a few days ago. It wouldn't hurt to put it in a footer. -- -fREW

Re: Separate Error log for each virtual host

2009-01-17 Thread fREW Schmidt
I am not quite sure what I did differently, but the per server error log is working now. Here's the config if anyone wants it: ErrorLog "C:/path/to/acd/logs/error.log" use lib 'C:/path/to/acd'; $ENV{MODE} = 'development'; ScriptAlias / "C:/path/to/acd" SetHan

Re: Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
>> Yeah, I have another virtualhost at *:80 with it's own ErrorLog >> directive, but of course it still doesn't seem to honor that and puts >> the errorlog in the default place anyway. > > This doesn't really have anything to do with mod_perl at all i think you > might want to try removing all the

Re: Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
On Fri, Jan 16, 2009 at 9:59 AM, Adam Prime wrote: > fREW Schmidt wrote: >> >> I would like to configure apache such that the errors for a specific >> virtual host get logged in their own file. I tried something like this: >> >> >> Erro

Separate Error log for each virtual host

2009-01-16 Thread fREW Schmidt
I would like to configure apache such that the errors for a specific virtual host get logged in their own file. I tried something like this: ErrorLog "C:/location/of/acd/logs/error.log" use lib 'C:/location/of/acd'; $ENV{MODE} = 'development'; ScriptAlias / "C:/locatti

Apache2::Reload: Where is it?

2009-01-15 Thread fREW Schmidt
Hello all, I am trying to use Apache2::Reload for development, and I apparently configured my server incorrectly because I get these errors when I include the PerlMode Apache2::Reload and PerlInitHandler Apache2::Reload directives I get these errors: [Thu Jan 15 17:34:21 2009] [error] Can't locat

Setting the CWD

2009-01-14 Thread fREW Schmidt
I am writing a CGI::App and I keep having to use full paths to get various places in my application. How can I set the CWD for a certain Location section of my code? Thanks! -- -fREW