On Sun, Nov 30, 2008 at 9:49 PM, <[EMAIL PROTECTED]> wrote:
> This suggests that the forking operation (with demotion to a lower priority
> user) prevents flock from working properly on the inherited filehandle. Yet
> my Apache child processes can inherit other open filehandles and tied hashes
>
My Q today may be affected by Apache and/or Perl, so it seems
appropriate for this mailing list.
I've written a mod-perl module that needs mutual exclusion among
Apache child processes using the prefork MPM, so I decided to use a
file as a semaphore using Perl's 'flock
On Wednesday 26 September 2007 9:58 am, Graham TerMarsch wrote:
> After recently releasing Apache2::Filter::Minifier::JavaScript/CSS, I saw
> several failed CPAN testers reports, generally due to the tester not having
> the required modules on their machine.
>
> Now, admittedly these are likely -au
On Wednesday 26 September 2007 12:23 pm, Geoffrey Young wrote:
> sorry, I got a private copy of this email and responded to that instead
> of on list :)
>
> in the end, what graham seemed to want was a variant of this:
>
> http://search.cpan.org/src/GEOFF/Apache-Clean-0.05/Makefile.PL
>
> which s
Fred Moyer wrote:
> Graham TerMarsch wrote:
>> Wanted to ping the list about something that's irked me the last few
>> days...
>>
>> After recently releasing Apache2::Filter::Minifier::JavaScript/CSS, I
>> saw several failed CPAN testers reports, generally due to the tester
>> not having the requ
Graham TerMarsch wrote:
Wanted to ping the list about something that's irked me the last few days...
After recently releasing Apache2::Filter::Minifier::JavaScript/CSS, I saw
several failed CPAN testers reports, generally due to the tester not having
the required modules on their machine.
I
On 26 Sep 2007, at 17:58, Graham TerMarsch wrote:
Wanted to ping others, though, and see what you guys are doing with
regards to
trying to make sure that you get as few CPAN testers failures as
possible.
Obviously I can't prevent -all- of the failures, but I'd like to
reduce them
wherever p
Wanted to ping the list about something that's irked me the last few days...
After recently releasing Apache2::Filter::Minifier::JavaScript/CSS, I saw
several failed CPAN testers reports, generally due to the tester not having
the required modules on their machine.
Now, admittedly these are lik
On Tuesday 01 August 2006 16:23, Reif Peter wrote:
> How do I configure my server, so that it does not
>
> I have ssi enabled on my web server. I also have a content filter in
> mod_perl:
>
> PerlOutputFilterHandler Apache::MyFilter
>
> How do I configure the server that it does not send requ
How do I configure my server, so that it does not
I have ssi enabled on my web server. I also have a content filter in
mod_perl:
PerlOutputFilterHandler Apache::MyFilter
How do I configure the server that it does not send requests made by
Well I couldn't use Data::FormValidator for my exact needs
There were too many if/else conditions I needed to implement into my
form class that I couldn't do with its constraint and dependency
system easily ( a bunch of multiple-field validations that would even
change the valid repsonse s
Jonathan wrote:
>
> On Feb 4, 2006, at 7:03 PM, RJ Herrick wrote:
>
>> In validating my form input I look at my DB tables to see what types
>> of input they will accept (valid values, maxlength, NULL ok, etc).
>> This data is about the database, not the values coming in off the
>> forms. It
On Feb 4, 2006, at 7:03 PM, RJ Herrick wrote:
In validating my form input I look at my DB tables to see what
types of input they will accept (valid values, maxlength, NULL ok,
etc). This data is about the database, not the values coming in off
the forms. It will stay the same until I alter
RJ Herrick am Sonntag, 5. Februar 2006 01.03:
> Thanks to the Johns for their responses, but I believe perhaps I was
> unclear about my intent.
>
> In validating my form input I look at my DB tables to see what types of
> input they will accept (valid values, maxlength, NULL ok, etc). This
> data i
Thanks to the Johns for their responses, but I believe perhaps I was
unclear about my intent.
In validating my form input I look at my DB tables to see what types of
input they will accept (valid values, maxlength, NULL ok, etc). This
data is about the database, not the values coming in off th
At 07:05 PM 3/9/2005, Geoffrey Young wrote:
>> official releases are also always on
>>
>> http://svn.apache.org/viewcvs.cgi/perl/modperl/
>
>blarg, cut and paste error. I meant
>
> http://perl.apache.org/dist/
I hope you ment http://www.apache.org/dist/perl/ since that's
what our mirrors cap
> official releases are also always on
>
> http://svn.apache.org/viewcvs.cgi/perl/modperl/
blarg, cut and paste error. I meant
http://perl.apache.org/dist/
--Geoff
William A. Rowe, Jr. wrote:
> I can't seem to locate the source repository point for _RC4...
>
> Looked in;
>
> http://svn.apache.org/repos/asf/perl/modperl/tags/
from the Changes file I think it's this
http://svn.apache.org/repos/asf/perl/modperl/tags/1_999_21/
>
> as well as
>
> http://c
I can't seem to locate the source repository point for _RC4...
Looked in;
http://svn.apache.org/repos/asf/perl/modperl/tags/
as well as
http://cvs.apache.org/viewcvs.cgi/
(which I see modperl2 is now gone.)
Any pointers? Would like to give this a thorough drubbing
so I can toss my ++ into the
[EMAIL PROTECTED] wrote:
Hi! I am having difficulty setting cookies once we changed our
production modperl system. We changed from a single machine
front-end/backend setup two a two machine setup Both use apache 2.x for
the front server on ports 80 and 443, and modperl 1.3.x server running
on ports
Hi!
I am having difficulty setting cookies once we
changed our production modperl system.
We changed from a single machine
front-end/backend setup two a two machine setup
Both use apache 2.x for the front server on ports
80 and 443, and modperl 1.3.x server running on ports 8001,8000.
The p
i am not much of a mp hacker but as I understand it, one problem with
making per-session persistent connections would be that there is no guarantee
that future requests in the same apache session will be handled by the same
mod_perl process. This means that any backend that provided what you are
Hi, I've been using Apache::Session w/ mod_perl which seems to work nicely.
But I have a question -- this seems to be mostly for data. What about say
a network connection (i.e. I'd like to have one connection per user session
to a back-end server. The db persistent connections sort of do this I
pr
Dear friends,
I am comfortable with mysql database and php programming language, however, applications for online quiz using php isn't the language of choice and I have been guided to modperl.
how do I use mod_perl for programming online quiz applications, guidance, please.
For me the following lines works fine:
use CGI::Cookie;
my $cookie = new CGI::Cookie(-name =>'NAME', -value => 'VALUE', -path =>
'/',-expires => '+1M',);
Try with use CGI::Cookie instead use CGI (error message must say 'perhaps you
forgot to load "CGI::Cookie"?').
As last chance, did you try re
I have this piece of code running AccessController.om
running using mod_perl :
--
my $cookie = CGI::Cookie->new(-name => 'sessid',
-value => {XYZ => '321312'},
-expires => '+1M');
--
This throws following error :
=
Can't locate object method "ne
> "Héctor" == Héctor Daniel Cortés González <[EMAIL PROTECTED]> writes:
Héctor> I'm sorry, but it is a module written for MP1 PerlAuthenHandler. I will
Héctor> try on list.perl.org. Do you think I should keep my subscription to
Héctor> mod_perl list?
If you're interested in reading, or partic
Héctor Daniel Cortés González wrote:
On Tue, 2003-10-21 at 11:27, Stas Bekman wrote:
Héctor Daniel Cortés González wrote:
Hi!
I wrote a module that needs a SUID helper application, but I can't
figure out how to write the Makefile.PL to let the SUID installed. I
really apreciate your advice.
Sorr
On Tue, 2003-10-21 at 11:27, Stas Bekman wrote:
> Héctor Daniel Cortés González wrote:
> > Hi!
> >
> > I wrote a module that needs a SUID helper application, but I can't
> > figure out how to write the Makefile.PL to let the SUID installed. I
> > really apreciate your advice.
>
> Sorry, but this
Héctor Daniel Cortés González wrote:
Hi!
I wrote a module that needs a SUID helper application, but I can't
figure out how to write the Makefile.PL to let the SUID installed. I
really apreciate your advice.
Sorry, but this is a wrong place to ask this kind of question, we talk about
mod_perl here
Hi!
I wrote a module that needs a SUID helper application, but I can't
figure out how to write the Makefile.PL to let the SUID installed. I
really apreciate your advice.
Regards
--
Ing. Héctor Daniel Cortés González <[EMAIL PROTECTED]> | Don't take
antes 'Aztec Eagle' Turbo <[EMAIL PROTECTED]>
31 matches
Mail list logo