... [...] Does your form pass things using the appropiate enctype: multipart/form-data Tom...
63145
Dorian Taylor
dorian@...
Feb 1, 2005 1:23 am
how would i go about retrieving (mod_perl or otherwise) the name of the immediate calling handler of the current handler being executed? i'm trying to do loop...
63144
John Saylor
johns@...
Jan 31, 2005 11:12 pm
hi i'm trying to make this modperl upload handler work and it doesn't. it keeps giving me absolutely nothing for the file [but gives all the params and their...
63143
Alex Greg
alex.greg@...
Jan 31, 2005 11:07 pm
... Yep, it runs fine. $ENV{'mod_perl'} is true. http://perl.apache.org/docs/1.0/guide/config.html#Alias_Configurations ... Apparently, if I don't call...
63142
Perrin Harkins
perrin@...
Jan 31, 2005 10:55 pm
... Does this actually work without the filitering? I see a use of ScriptAlias in there, which usually sets mod-cgi and breaks mod_perl for that directory. ...
63141
Alex Greg
alex.greg@...
Jan 31, 2005 9:23 pm
... HI Perrin, I'm using Apache::RegistryFilter: PerlHandler Apache::RegistryFilter Apache::Dynagzip See the attached httpd.conf for full context etc. ... This...
63140
Perrin Harkins
perrin@...
Jan 31, 2005 8:35 pm
... Have you tried using Apache::RegistryFilter instead of Registry? Or try putting something like this at the top of your scripts: my $r = shift; ...
63139
Leo
leo-mod-perl@...
Jan 31, 2005 7:17 pm
... Shouldn't it be use lib qw(/users/webuser/homegrown/lib);...
63138
Leo
leo-mod-perl@...
Jan 31, 2005 6:50 pm
... I didn't follow your thread with Stas. How are you calling the methods contained in MyModule? Exporter may be something you need to use in MyModule.pm...
63137
Steven Lembark
lembark@...
Jan 31, 2005 5:20 pm
-- "Kent, Mr. John \\(Contractor\92;)" <kent@...> ... or just: use FindBin::libs; and have your stuff in a ./lib directory in or above $Bin and be...
63136
Kent, Mr. John (Contr...
kent@...
Jan 31, 2005 5:17 pm
Leo, I am not using OO coded modules. My modules contain methods. Other routines call this module's routines as you indicated: In order to solve other...
63135
Leo
leo-mod-perl@...
Jan 31, 2005 4:36 pm
... Does your module work with a blessed references, or it a module containing methods? The above declaration is for OO coded modules that utilize blessed ...
63134
Jonathan Vanasco
jvanasco@...
Jan 31, 2005 4:11 pm
... That's what I do....
63133
Geoffrey Young
geoff@...
Jan 31, 2005 4:02 pm
... not really from the perspective of the mp1 api - we've considered changing that behavior before, and IIRC philippe even produced a patch, but we considered...
63132
Kent, Mr. John (Contr...
kent@...
Jan 31, 2005 3:55 pm
Greetings, I have some home-grown modules that I wish to have pre-compiled into a heavy Apache server via mod-perl. Must my module EXPORT the desired sub...
63131
Alex Greg
alex.greg@...
Jan 31, 2005 3:13 pm
... I'm not sure we're ready to migrate to MP2 / Apache 2 just yet. Can anything be done to address the filter problems in MP1? -- Alex...
63130
Tulan W. Hu
twhu@...
Jan 31, 2005 2:26 pm
... Does it need to access on internet? I need to have a proxy setting to go out. ... [warning] Skipping 'set unlimited ulimit for coredumps', since we are ...
63129
Philippe M. Chiasson
gozer@...
Jan 31, 2005 6:59 am
... Did you mean PerlConfigRequire and PerlPostConfigRequire ? If so, I just added these 2. ... Philippe M. Chiasson m/gozer\@(apache|cpan|ectoplasm)\.org/ GPG...
63128
Philippe M. Chiasson
gozer@...
Jan 31, 2005 4:32 am
... Yeah, seems it's a usefull option that just fell off the radar, thus didn't get tested much (if at all). ... It's fixed in r149218, was a simply typo in...
63127
Stas Bekman
stas@...
Jan 31, 2005 4:06 am
... I suppose because angie is using the mp1 legacy code via Apache::compat: use Apache::Constants qw(OK); why not drop that and use the pure mp2 API? i.e....
63126
Stas Bekman
stas@...
Jan 31, 2005 4:03 am
... [...] ... Why not switch to modperl2, where filters work better? http://perl.apache.org/docs/2.0/user/handlers/filters.html -- ...
63125
Scott Gifford
sgifford@...
Jan 31, 2005 3:50 am
Hello, I'm working on moving a Web server to a new location, and to test it, I'd like to use a simple filter to replace all references to the old server name...
63124
Alex Greg
alex.greg@...
Jan 30, 2005 9:55 pm
Hi, I've been trying for some considerable time now to implement web content compression for our application, but it seems impossible without a rewrite. Our...
63123
tic@...
Jan 30, 2005 9:30 pm
... If I'm successful I'll post it on the appropriate list. :) ... I'll do that. Thanks for the hint. Didn't realise there was a apreq list. --manfred ... -- ...
63122
Perrin Harkins
perrin@...
Jan 30, 2005 7:40 pm
... Development of it was outsourced to another country as well. The RNC isn't trying to hide that stuff, since it fits in just fine with their stances on...
63121
Joe Schaefer
joe+apache@...
Jan 30, 2005 7:35 pm
... Questions about libapreq's configure build really belong on apreq-dev@, not on the modperl list. ... I suggest you download apreq's current trunk and try...
63120
Geoffrey Young
geoff@...
Jan 30, 2005 7:34 pm
... those only remove the PerlAuthenHandler from the handler chain. that is, since you probably have mod_auth installed, apache will move first to mod_perl...
63119
Stef1
Stef1@...
Jan 30, 2005 7:27 pm
... But if you don't want the %ENV overhead, you can keep "SetHandler modperl" and put in your httpd.conf: PerlSetVar user "gigel" and in your handler access...
63118
tic@...
Jan 30, 2005 7:19 pm
I tried to install libapreq2-2.40-dev on a debian sarge like so ./configure --with-apache2-apxs=/usr/bin/apxs2 I get the following apxs:Error: Invalid query...
63117
angie ahl
angie.ahl@...
Jan 30, 2005 7:09 pm
Hi everyone. I think I only have 2 hurdles left to get my mp1 stuff running under mp2 I have an access handler that overrides my PerlAuthenHandler for a couple...