Re: highscalability.com report

2012-04-04 Thread Mike OK
LOL - Original Message - From: Rolf Banting To: Perrin Harkins Cc: Jim Schueler ; modperl@perl.apache.org Sent: Wednesday, April 04, 2012 9:13 AM Subject: Re: highscalability.com report On Wed, Apr 4, 2012 at 1:31 PM, Perrin Harkins wrote: ... If they were t

Re: Segment Fault when creating a thread

2011-08-23 Thread Mike OK
Thanks for the tip Fred. I just now upgraded to 2.0.5 but still get the same error. Mike - Original Message - From: "Fred Moyer" To: "Mike OK" Cc: "mod_perl list" Sent: Tuesday, August 23, 2011 5:26 PM Subject: Re: Segment Fault when creating a th

Segment Fault when creating a thread

2011-08-23 Thread Mike OK
I must have a problem with my mod_perl set up. When I try to run this script, I get a "child pid 451 exit signal Segmentation fault (11)". It seems that creating the thread causes the error. This is the startup line from the log file with the apache, mod_perl, and perl versions. Apache/2.2.11

Re: PerlRun Subroutine redefine warnings

2009-08-26 Thread Mike OK
This error occurs when you have two subroutines with the same name. Mike O'Krongli President and CTO Acorg Inc 519 432-1185 - Original Message - From: "Kiran Kumar" To: Sent: Wednesday, August 26, 2009 8:07 PM Subject: PerlRun Subroutine redefine warnings Hi, I am running mod_p

Re: quick pure perl question

2009-06-28 Thread Mike OK
Check out this man page http://perldoc.perl.org/functions/open.html For encoding UTF8, the example is open(FH, "<:encoding(UTF-8)", "file") Mike - Original Message - From: "André Warnier" To: "mod_perl list" Sent: Sunday, June 28, 2009 11:41 AM Subject: quick pure perl question

Re: compiling problems with mod_perl 2.0.3 and Apache 2.2.6

2009-06-16 Thread Mike OK
Hi Arthur Are you building a static apache or dynamic that uses .so modules?? Mike - Original Message - From: "ArthurG" To: Sent: Tuesday, June 16, 2009 4:05 PM Subject: Re: compiling problems with mod_perl 2.0.3 and Apache 2.2.6 I have encountered the same mod_perl make problem w

Re: Problem installing mod_perl2 on Clarkconnect [solved]

2009-06-15 Thread Mike OK
system wide config, I then su'd to root and forced the install. After adding the LoadModule line and ensuring it was in the correct directory, I got the mod_perl message in error_log. I am hoping that's all I need. Mike - Original Message - From: "Fred Moyer"

Re: Problem installing mod_perl2 on Clarkconnect

2009-06-15 Thread Mike OK
Thanks for the reply Fred. Today I upgraded from apache 2.0 to 2.2 and still are having the test errors. I will continue through and install without test to see what happens. Any idea where I can find 2.0.5-dev?? Mike - Original Message - From: "Fred Moyer" To: &qu

Problem installing mod_perl2 on Clarkconnect

2009-06-15 Thread Mike OK
Hi I am experiencing some trouble getting mod_perl installed using cpan. After much research online, I have found a bug report that seems to match with the following output generated after a test. Test Summary Report --- t/hooks/authen_basic.t (Wstat: 0 Tests: 4 Failed: 1) Fai

Re: Sort issue

2006-08-13 Thread Mike OK
;#35645 - Original Message - From: "Mike OK" <[EMAIL PROTECTED]> To: Sent: August 13, 2006 11:32 AM Subject: Sort issue > Hi > > I would like to do some custom sorting with some hash data that I have > stored. It will be used in a mod_perl application so I

Sort issue

2006-08-13 Thread Mike OK
Hi I would like to do some custom sorting with some hash data that I have stored. It will be used in a mod_perl application so I would like to ensure that the variables are safe and local. My worry is that I plan to call a subroutine with sort but I have no idea how to pass the variables or

Re: up2date mess continued: serious leakage!

2006-08-11 Thread Mike OK
Hi       Why not try declaring the variables with "my" instead.  A quote from O'Reilly's Perl in a Nutshell   Dynamic variables are visible to other subroutines called from within their scope.  Dynamic variables are defined with local, and they are not private variables, but rather they are

Re: -M in modperl

2006-01-12 Thread Mike OK
me. Mike - Original Message - From: "Randal L. Schwartz" To: "Mike OK" <[EMAIL PROTECTED]> Cc: "LUKE" <[EMAIL PROTECTED]>; Sent: January 12, 2006 1:53 PM Subject: Re: -M in modperl > >>>>> "Mike" == Mike OK <[EMAIL PR

Re: -M in modperl

2006-01-12 Thread Mike OK
Hi The problem may lie in the kernal itself. I had a similar problem and found that the kernal was to blame. Here is the code I can use in place of the READDIR. Mike my $name; $file = $file . '/'; if ( -d $file ) { if ( $readdir_hack eq "yes" ) { $directory = $file;

Re: Why does my MP2 crash intermittently?

2005-09-12 Thread Mike OK
Hi       Looks like you should have done a Google search.  The problem looks to be an operating system error.  Here is a quote from the Microsoft Knowledge base (http://support.microsoft.com/?kbid=262490) "This behavior occurs because the operating system does not allocate a large enough bu

Saving files to another server

2005-02-20 Thread Mike OK
Hi   I am looking for some opinions on how to best handle this situation.  I am willing to do all of the research about each topic but would like some points of view on how others would handle this.  Thanks Mike   - I have developed a search engine that caches the results - Currently I