Re: Modperl with threads

2024-12-19 Thread Ed Sabol
On Dec 19, 2024, at 5:10 PM, Mithun Bhattacharya wrote: > Has DBI itself become thread safe or is it still a great area ? AFAIK, as long as each thread instantiates it's own handle, it should work. I don't believe you can share the same DBI handle between multiple threads. Regards, Ed

Re: Modperl with threads

2024-12-19 Thread Mithun Bhattacharya
I think the bigger problem is that not all of the Perl modules are thread safe. Has DBI itself become thread safe or is it still a great area ? On Thu, Dec 19, 2024, 3:46 PM Ed Sabol wrote: > On Dec 19, 2024, at 12:47 PM, Bitfox wrote: > > Mod_perl doesn’t support threads, am I right? > > If y

Re: Modperl with threads

2024-12-19 Thread Ed Sabol
On Dec 19, 2024, at 12:47 PM, Bitfox wrote: > Mod_perl doesn’t support threads, am I right? If you mean mod_perl with ithreads and using the Apache mpm_event module, then that's incorrect, I think. Search the archives of this mailing list for posts by Joe Schaefer for some clues as to how. I h

Re: Modperl with threads

2024-12-19 Thread Ruben Safir
it has had thread for many years to my knowledge On Fri, Dec 20, 2024 at 01:47:12AM +0800, Bitfox wrote: > Mod_perl doesn’t support threads, am I right? > This may limit its capabilities from my view. > Any alternative stack? > > Thanks -- So many immigrant groups have swept through our town

Re: ModPerl::RegistryLoader::finfo fails on Windows possibly due to lack of permissions.

2019-08-20 Thread Thorsten Schöning
Guten Tag Steve Hay, am Montag, 19. August 2019 um 14:37 schrieben Sie: > I will need to get a new Apache-Test released with the dot-in-INC fix > included, and then I'm back on track for getting 2.0.11 RC1 out :-) That's great news, thanks! Mit freundlichen Grüßen, Thorsten Schöning -- Thorst

Re: ModPerl::RegistryLoader::finfo fails on Windows possibly due to lack of permissions.

2019-08-19 Thread Steve Hay
On Wed, 31 Jul 2019 at 19:40, Thorsten Schöning wrote: > > Guten Tag Steve Hay, > am Mittwoch, 31. Juli 2019 um 19:48 schrieben Sie: > > > I ran into this myself recently. > > Do you see anything like a timeout happening as well or is your test > app failing fast? > > > https://bz.apache.org/bugzi

Re: ModPerl::RegistryLoader::finfo fails on Windows possibly due to lack of permissions.

2019-07-31 Thread Thorsten Schöning
Guten Tag Steve Hay, am Mittwoch, 31. Juli 2019 um 19:48 schrieben Sie: > I ran into this myself recently. Do you see anything like a timeout happening as well or is your test app failing fast? > https://bz.apache.org/bugzilla/show_bug.cgi?id=51560 At least in my case I'm not using any Active D

Re: ModPerl::RegistryLoader::finfo fails on Windows possibly due to lack of permissions.

2019-07-31 Thread Steve Hay
On Wed, 31 Jul 2019 at 18:07, Thorsten Schöning wrote: > > Hi all, > > I recently started to have a look at supporting mod_perl for our > WebApp on Windows again and implemented a very simple PoC pre-loading > our app during start of HTTPd using "PerlPostConfigRequire". During > implementation I r

Re: modperl for httpd 2.4? Yes...

2017-06-23 Thread Peng Yonghua
Thanks for kind info, Randolf. On 2017/6/23 星期五 23:56, Randolf Richardson wrote: Yes, both ModPerl 2.0 and Apache HTTPd v2.4 are in active development. Please note that there are many different Apache HTTPd modules that have their own version numbers that are not in lockstep wit

Re: modperl for httpd 2.4?

2017-06-23 Thread Steve Hay
On 23 June 2017 at 10:05, Peng Yonghua wrote: > Hi, > > Apache httpd has get upgraded to 2.4.26. > But modperl is still in 2.0 branch. > Is it still in active development? thanks. > Support for httpd-2.4 was added in modperl-2.0.9, released in June 2015.

Re: modperl for httpd 2.4? Yes...

2017-06-23 Thread Randolf Richardson
Yes, both ModPerl 2.0 and Apache HTTPd v2.4 are in active development. Please note that there are many different Apache HTTPd modules that have their own version numbers that are not in lockstep with Apache's HTTPd server version numbers. Also, it's important to note that whil

Re: Modperl as backend for mobile apps

2016-10-31 Thread John Dunlap
We're doing that but, for whatever reason, the only way we were able to get apache to return JSON instead of HTML was in assbackwards mode On Mon, Oct 31, 2016 at 10:46 AM, Adam Prime wrote: > On 16-10-31 10:34 AM, John Dunlap wrote: > >> We do this by processing all requests in an eval block an

Re: Modperl as backend for mobile apps

2016-10-31 Thread Adam Prime
On 16-10-31 10:34 AM, John Dunlap wrote: We do this by processing all requests in an eval block and putting Apache into assbackwards mode so that we can send a 500 response with a JSON response body You can also do it with $r->custom_response[1] from within your mod_perl code itself. https:/

Re: Modperl as backend for mobile apps

2016-10-31 Thread John Dunlap
We do this by processing all requests in an eval block and putting Apache into assbackwards mode so that we can send a 500 response with a JSON response body On Mon, Oct 31, 2016 at 5:44 AM, A. Warnier wrote: > On 31.10.2016 10:26, Michel Jansen wrote: > >> Goodmorning, >> >> We are using Apache

Re: Modperl as backend for mobile apps

2016-10-31 Thread A. Warnier
On 31.10.2016 10:26, Michel Jansen wrote: Goodmorning, We are using Apache2-ModPerl for the backend of a mobile app and would like to switch off the standard ErrorDocuments in Apache2. Is this possible? Have a look here : http://httpd.apache.org/docs/2.4/mod/core.html#errordocument I belie

Re: ModPerl::Util::exit: (120000) exit was called at /usr/share/perl5/CGI/Carp.pm line 590

2012-10-31 Thread Dave Morgan
Thank you Andre, On 31/10/12 01:58 PM, André Warnier wrote: Dave Morgan wrote: How do I find out where the following call(s) are made from? See http://search.cpan.org/~dom/perl-5.14.3/lib/Carp.pm or by including the string -MCarp=verbose in the PERL5OPT environment variable. Exactly what I

Re: ModPerl::Util::exit: (120000) exit was called at /usr/share/perl5/CGI/Carp.pm line 590

2012-10-31 Thread André Warnier
Dave Morgan wrote: Hi All. We moved our software stack to mod-perl2 six months ago and have been steadily cleaning up warnings and such. We have had problems with warning messages from regex's showing up without time information. The following issue appears similar. How do I find out where t

Re: ModPerl::Util::exit: (120000) exit was called at /usr/share/perl5/CGI/Carp.pm line 590

2012-10-31 Thread Andy Colson
On 10/31/2012 11:57 AM, Dave Morgan wrote: Hi All. We moved our software stack to mod-perl2 six months ago and have been steadily cleaning up warnings and such. We have had problems with warning messages from regex's showing up without time information. The following issue appears similar.

Re: Modperl support for Apache 2.4

2012-10-06 Thread Brett @Google
There is already a fork for this : http://svn.apache.org/repos/asf/perl/modperl/branches/httpd24 I have not tried it, personally.. but many people have. On Sat, Oct 6, 2012 at 2:02 AM, Hong Ye wrote: > Hi, > > Does anyone know when mod_perl will be available to download for Apache > 2.4? > > Th

Re: Modperl handler status code. Handler invoked two times per request.

2012-07-12 Thread Vincent Veyron
Le lundi 02 juillet 2012 à 03:50 +0400, rei...@ya.ru a écrit : > Hello. Hi, > So, whats wrong? > Dude, a lot of things... Not sure I can catch them all, but since nobody is tackling it, see some comments below. > I've found unexpected behavior of modperl handler. If handler return > Apa

Re: Modperl handler status code. Handler invoked two times per request.

2012-07-12 Thread Vincent Veyron
Le lundi 02 juillet 2012 à 03:50 +0400, rei...@ya.ru a écrit : > Hello. Hi, > So, whats wrong? > Dude, a lot of things... Not sure I can catch them all, but since nobody is tackling it, see some comments below. > I've found unexpected behavior of modperl handler. If handler return > Apa

Re: ModPerl::Util::exit: (120000) exit was called

2012-02-11 Thread gAzZaLi
*** Disclosure: Haven't encountered this issue but was lacking a Sunday morning puzzle so take this for what it's worth. You're right about the exit() documentation. I tried to recreate your problem and could only come up with a similar situation if I used exit() inside an eval block like s

Re: ModPerl::RegistryLoader

2011-07-27 Thread Jiří Pavlovský
On 26.7.2011 16:08, Perrin Harkins wrote: 2011/7/26 Jiří Pavlovský: That is probably it, I store db handle in a singleton. That, unfortunately is something I cannot change easily Apache::DBI should make this unnecessary. You could change your singleton code to DBI->connect every time and it wo

Re: ModPerl::RegistryLoader

2011-07-26 Thread Perrin Harkins
2011/7/26 Jiří Pavlovský : > That is probably it, I store db handle in a singleton. > That, unfortunately is something I cannot change easily Apache::DBI should make this unnecessary. You could change your singleton code to DBI->connect every time and it would just pull the cached handle from Apa

Re: ModPerl::RegistryLoader

2011-07-26 Thread Jiří Pavlovský
On 25.7.2011 22:18, Perrin Harkins wrote: 2011/7/22 Jiří Pavlovský: On 22.7.2011 18:15, Perrin Harkins wrote: However this doesn't work as Apache is segfaulting. That makes it sound like it is working but there's something in your scripts that doesn't like being loaded in the parent process.

Re: ModPerl::RegistryLoader

2011-07-25 Thread Torsten Förtsch
On Monday, 25 July 2011 23:31:04 McCarrell, Jeff wrote: > I am not sure if this directly applies to your issue, but I got > segfaults in DBI when I just opened the DB handle once in the parent, > reusing the DBH in child processes (a bug). The issue went away when > I ensured that every child proc

Re: ModPerl::RegistryLoader

2011-07-25 Thread McCarrell, Jeff
I am not sure if this directly applies to your issue, but I got segfaults in DBI when I just opened the DB handle once in the parent, reusing the DBH in child processes (a bug). The issue went away when I ensured that every child process did its own DBI->connect. HTH On 7/22/11 11:17 AM, "Jiří P

Re: ModPerl::RegistryLoader

2011-07-25 Thread Perrin Harkins
2011/7/22 Jiří Pavlovský : > On 22.7.2011 18:15, Perrin Harkins wrote: >>> >>> However this doesn't work as Apache is segfaulting. >> >> That makes it sound like it is working but there's something in your >> scripts that doesn't like being loaded in the parent process.  Are you >> opening up datab

Re: ModPerl::RegistryLoader

2011-07-22 Thread Jiří Pavlovský
On 22.7.2011 18:15, Perrin Harkins wrote: However this doesn't work as Apache is segfaulting. That makes it sound like it is working but there's something in your scripts that doesn't like being loaded in the parent process. Are you opening up database handles or files on the first hit and then

Re: ModPerl::RegistryLoader

2011-07-22 Thread Keywan Ghadami
Hi Jiri, i am not sure what you are trying to do with ModPerl::RegistryLoader, but what me helped to improve performance was : 1. Preload almost every library on startup: PerlPostConfigRequire /xyz/startup.pl ( - use Apache2::RequestRec(); use Apache2::RequestIO(); use Apache2::RequestU

Re: ModPerl::RegistryLoader

2011-07-22 Thread Perrin Harkins
2011/7/21 Jiří Pavlovský : > I did RTFM, but the man page was not clear to me, so I asked on the list. Asking on the list is encouraged! We just need specific questions > However this doesn't work as Apache is segfaulting. That makes it sound like it is working but there's something in your scr

Re: ModPerl::RegistryLoader

2011-07-21 Thread Jiří Pavlovský
On 21.7.2011 18:41, Perrin Harkins wrote: So I was looking a solution and found ModPerl::RegistryLoader. I'm just not sure I understand it completely. Is this the "compile once at startup" solution? Yes, that's what it's for. Thanks, so I'm on correct track Do I just put " my $rlbb = ModPerl

Re: ModPerl::RegistryLoader

2011-07-21 Thread Perrin Harkins
2011/7/21 Jiří Pavlovský : > So I was looking a solution and found ModPerl::RegistryLoader. I'm just not > sure I understand it completely. Is this the "compile once at startup" > solution? Yes, that's what it's for. > Do I just put " my $rlbb = ModPerl::RegistryLoader->new();" into > my startup

RE: ModPerl::RegistryLoader

2011-07-21 Thread Deighan, John
I don't know about ModPerl::RegistryLoader, but the simplest solution is just to "preload" the interpreters either manually or through a script whenever you restart Apache. In your httpd.conf file, you control how many interpreters are running and how many hits each interpreter handles before re

Re: ModPerl handler

2011-05-18 Thread McCarrell, Jeff
http://perl.apache.org/docs/2.0/user/intro/start_fast.html There are a wealth of good (maybe even great) docs here that explain the request life cycle, configuration … pretty much everything you need to know. Happy reading! From: marco mailto:marcodis...@gmail.com>> Date: Wed, 18 May 2011 14:43:

Re: Re: modperl for ubuntu

2010-12-01 Thread Jeff Pang
Thanks for all the kind info. I have installed it successfully in my ubuntu 9.10 from the sources. - Original Message - From: Marilyn Burgess To: modperl Subject: Re: modperl for ubuntu Date: 2010-12-2 01:04:52 Hello Jeff, Does Ubuntu use the same packages as Debian? On Debian I do

Re: modperl for ubuntu

2010-12-01 Thread Marilyn Burgess
Hello Jeff, Does Ubuntu use the same packages as Debian? On Debian I do: apt-get install apache2 libapache2-mod-perl2 libapache2-request-perl libapache2-mod-apreq2 Hope this helps! Marilyn On Wed, Dec 1, 2010 at 2:07 AM, Dave Hodgkinson wrote: > > On 1 Dec 2010, at 02:51, Jeff Pang wrote: >

Re: modperl for ubuntu

2010-12-01 Thread Dave Hodgkinson
On 1 Dec 2010, at 02:51, Jeff Pang wrote: > Hello, > > Does modperl and Apache2::Request have a port for Ubuntu and which will be > installed by apt-get? > Ubuntu's development environment is so worse, has been losing so many > libraries, compiling modperl under which is hard. Jeff, It's no

Re: modperl book

2010-06-18 Thread Fred Moyer
On Fri, Jun 18, 2010 at 7:10 AM, Chris Datfung wrote: > I'm looking for recommendations for a good ModPerl book that does not assume > too much Perl background, any suggestions? While not technically a book, many parts of the docs are available in pdf form at http://perl.apache.org For example,

Re: modperl book

2010-06-18 Thread Jeff McCarrell
Well, there probably isn't just one book that will fill that particular void. Writing fast, correct, and safe mod_perl is non-trivial, what with taint mode, URL rewriting, handling SQL queries, caching, etc. So there is sometimes a lot of non-perl-specific context that the mod_perl interfaces give

Re: modperl book

2010-06-18 Thread Chris Bennett
Chris Datfung wrote: I'm looking for recommendations for a good ModPerl book that does not assume too much Perl background, any suggestions? - Chris I have found this book to be extremely helpful http://www.modperlcookbook.org/ if you get it, be sure to use the index on this website. The bo

Re: modperl and comet?

2010-04-17 Thread Michael Ludwig
E R schrieb am 16.04.2010 um 15:37:44 (-0500): [modperl and comet?] > I'm interested in adding a Comet capability to a (rather large) > mod-perl application. > > To get around XSS limitations, the Comet service will have the > same host and port as the web service. However, I don't want a > large

Re: modperl and comet?

2010-04-16 Thread Perrin Harkins
On Fri, Apr 16, 2010 at 4:37 PM, E R wrote: > Is there a way that a web request can be passed off to another process > without tying up the Apache process? For instance, can the Apache > process pass the file descriptors for the HTTP connection to another > process which would free itself up for h

Re: modperl and comet?

2010-04-16 Thread William A. Rowe Jr.
On 4/16/2010 3:37 PM, E R wrote: > I'm interested in adding a Comet capability to a (rather large) > mod-perl application. > > To get around XSS limitations, the Comet service will have the same > host and port as the web service. However, I don't want a large > mod-perl process tied up performing

Re: modperl and comet?

2010-04-16 Thread Octavian Rasnita
From: "E R" Subject: modperl and comet? > I'm interested in adding a Comet capability to a (rather large) > mod-perl application. > > To get around XSS limitations, the Comet service will have the same > host and port as the web service. However, I don't want a large > mod-perl process tied up

Re: modperl / apache13 memory footprints on 32 adn 64 bit servers

2009-12-24 Thread William A. Rowe Jr.
Joe Niederberger wrote: > Does anyone know if one can have 64bit perl use 64 bit addressing (to make > use of >4GB RAM) but still use 32-bit INTs etc (to keep footprint from > getting > large)? This is the default on windows x64.

Re: modperl / apache13 memory footprints on 32 adn 64 bit servers

2009-12-22 Thread Joe Niederberger
I should add - if anyone can answer this question - would it be a good idea to do so even if possible? Thanks, Joe Niederberger > Does anyone know if one can have 64bit perl use 64 bit addressing (to make > use of >4GB RAM) but still use 32-bit INTs etc (to keep footprint from > getting > larg

Re: modperl / apache13 memory footprints on 32 adn 64 bit servers

2009-12-22 Thread Joe Niederberger
Does anyone know if one can have 64bit perl use 64 bit addressing (to make use of >4GB RAM) but still use 32-bit INTs etc (to keep footprint from getting large)? Thanks, Joe N.

Re: modperl / apache13 memory footprints on 32 adn 64 bit servers

2009-12-22 Thread Joe Niederberger
Well, some poking aronud by the sysadmins and they found teh perl was compiled with > MYMALLOC PERL_MALLOC_WRAP USE_64_BIT_ALL USE_64_BIT_INT USE_FAST_STDIO > USE_LARGE_FILES USE_PERLIO So it was using 64 bit variables for INT and maybe some other uneeded things. So that might be a big part of it

Re: modperl / apache13 memory footprints on 32 adn 64 bit servers

2009-12-21 Thread Michael Peters
On 12/20/2009 09:40 AM, Joe Niederberger wrote: 32bit: SIZE=45M RES=32M 64bit: SIZE=95M RES=45M Do these look reasonable? Should I worry? Good question. While I haven't made the jump to 64bit for my web machines there are lots of memory related things that double in size when you do s

Re: ModPerl::Registry and custom error documents

2009-10-05 Thread Andreas Mock
> -Ursprüngliche Nachricht- > Von: "Torsten Foertsch" > Gesendet: 17.09.09 13:14:16 > An: modperl@perl.apache.org > CC: Andreas Mock > Betreff: Re: ModPerl::Registry and custom error documents > On Thu 17 Sep 2009, Andreas Mock wrote: > > Ho

Re: ModPerl::Registry and Error Documents

2009-10-05 Thread Andreas Mock
> -Ursprüngliche Nachricht- > Von: "Torsten Foertsch" > Gesendet: 29.09.09 10:01:26 > An: modperl@perl.apache.org > Betreff: Re: ModPerl::Registry and Error Documents > > You have asked this question already 2 times before, on 17.09.09 12:13 > and 17.

Re: ModPerl::Registry and Error Documents

2009-09-29 Thread Torsten Foertsch
On Tue 29 Sep 2009, Andreas Mock wrote: > after searching for a while without finding an answer to my question > I hope you can help me, > > We're using mod_perl with ModPerl::Registry to have only a thin > layer between apache and our perl scripts. So far so good. > Now we want to produce error do

Re: ModPerl::Registry and custom error documents

2009-09-17 Thread Torsten Foertsch
On Thu 17 Sep 2009, Andreas Mock wrote: > How can we dynamically create own error documents without using > the lower level mod_perl/apache api? Is there a simple way? > How can we achieve that? A very simple registry script: #!/usr/bin/perl use strict; my $r=shift; $r->status($r->args); exit;

Re: ModPerl::Registry under Windows

2009-04-07 Thread Randy Kobes
2009/3/29 Octavian Râşniţă : > Hello, > > Does anyone know if ModPerl::Registry really runs the cgi scripts > persistently under Windows? This should work the same under Windows. > I have loaded a Catalyst application using the standard mod_perl way, (as a > PerlRequestHandler) and the httpd proc

Re: modperl or php? Re: decline and fall of modperl?

2009-03-27 Thread Phil Van
Great to hear that! My experience, that programs written in application frameworks usually take more memory and CPU resources to run, is based on old versions. The new ones may have been improved very much in this area. PV On Fri, Mar 27, 2009 at 1:21 AM, Rolf Schaufelberger wrote: > Hi, > > d

Re: modperl or php? Re: decline and fall of modperl?

2009-03-27 Thread Rolf Schaufelberger
Hi, daily traffic: 20,000 - 100,000 unique sessions (medium sites) => Php + an efficient caching system => modperl, but not based on Mason or such "application toolkits" I don't agree: I had a website running with 20.000 visitors/day, build with Mason (MasonX::Webapp), split into 180 fronte

Re: Modperl memory exceedance under mason webmail

2008-11-02 Thread Adam Prime
Jim Donovan wrote: > Hi, > > We run a webmail system which was written in Mason. It won't let you download > or read large attachments (~5MB upwards). This seems to be some sort of > memory allocation error. > > If you watch the server with top(1) while downloading a 2MB attachment, you > can se

Re: ModPerl + Perl 5.10

2008-07-26 Thread Torsten Foertsch
On Sat 26 Jul 2008, Oleg Burlaca wrote: > I need a stable Apache + mo_perl + perl combination. > Is perl5.10 + mod_perl2.0.4. the right way to go? yes, with prefork mpm. > (are all perl modules working ok under 5.10 ?) You can't expect someone to tell you even if all perl modules are working by

Re: modperl static or dynamic

2008-07-18 Thread jeff pang
These are the install documents for mp2: http://perl.apache.org/docs/2.0/user/install/install.html#Dynamic_mod_perl http://perl.apache.org/docs/2.0/user/install/install.html#Static_mod_perl I just think both are fine. For me I use dynamic install most time. On Sat, Jul 19, 2008 at 5:42 AM, Mario

Re: ModPerl::Registry or ...?

2008-07-13 Thread Clinton Gormley
On Sun, 2008-07-13 at 06:35 +, John M. Dlugosz wrote: > Reading the docs, I'm a little confused. Is ModPerl::Registry > specifically for emulating the CGI environment, or should I do > something else if I plan to write to the API from scratch and don't > need the backward compatibility? ModPe

Re: modperl and syslog, strange behavior

2008-04-15 Thread Perrin Harkins
On Tue, Apr 15, 2008 at 5:03 PM, John Gateley <[EMAIL PROTECTED]> wrote: > if($UseLog) { > Sys::Syslog::setlogsock('unix'); > openlog("$WebScriptName", 'pid', 'daemon'); > syslog('info', "$WebScriptName starting"); > } > ... > syslog('info', "Message"); # Actually buried in a subroutine >

Re: ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-04 Thread imacat
On Thu, 3 Apr 2008 10:19:31 +0200 Torsten Foertsch <[EMAIL PROTECTED]> wrote: > I am asking because I have had FAIL reports from CPAN testers that don't > install ModPerl::MM. The way around these reports is using > BEGIN { > eval { > require ModPerl::MM; > require Apache::TestMM; > };

Re: ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-03 Thread Philippe M. Chiasson
Geoffrey Young wrote: Torsten Foertsch wrote: Hi, I am a bit confused about what MakeMaker is best to use with mp2 modules. There is the good old ExtUtils::MakeMaker that is mentioned in http://perl.apache.org/docs/general/testing/testing.html. How I got there I don't remember but I have us

Re: ModPerl::MM or ExtUtils::MakeMaker or what?

2008-04-03 Thread Geoffrey Young
Torsten Foertsch wrote: Hi, I am a bit confused about what MakeMaker is best to use with mp2 modules. There is the good old ExtUtils::MakeMaker that is mentioned in http://perl.apache.org/docs/general/testing/testing.html. How I got there I don't remember but I have used in all my modules M

Re: modperl with SSL

2008-03-25 Thread Clinton Gormley
On Tue, 2008-03-25 at 17:45 +0800, J. Peng wrote: > thanks. > how about the capability of it? > We have more than 100 million users,that's a great challenge. That's a lot of users :) I don't have the experience of supporting that number of users, but I've used it on a site with 80 requests / seco

Re: modperl with SSL

2008-03-24 Thread xyon
I also recommend stunnel. It has come through for me in these same situations without problems. On Mon, 2008-03-24 at 07:46 -0400, Roberto C. Sánchez wrote: > On Mon, Mar 24, 2008 at 03:25:26PM +0800, J. Peng wrote: > > hello list, > > > > we have our own realserver called QHttpd. > > This realse

Re: modperl with SSL

2008-03-24 Thread Roberto C . Sánchez
On Mon, Mar 24, 2008 at 03:25:26PM +0800, J. Peng wrote: > hello list, > > we have our own realserver called QHttpd. > This realserver doesn't support SSL protocal (https). > So I have to develop a proxy before QHttpd to get it be compatible with SSL. > I was thinking using modperl handler to do i

Re: modperl with SSL

2008-03-24 Thread Issac Goldstand
a backend server - the server that REALly serves the request. Foo JH wrote: What is a realserver? J. Peng wrote: hello list, we have our own realserver called QHttpd. This realserver doesn't support SSL protocal (https). So I have to develop a proxy before QHttpd to get it be compatible wit

Re: modperl with SSL

2008-03-24 Thread J. Peng
realserver, generally, it means a web server like apache, which is different from a proxy like squid. On Mon, Mar 24, 2008 at 3:56 PM, Foo JH <[EMAIL PROTECTED]> wrote: > What is a realserver? > > > > J. Peng wrote: > > hello list, > > > > we have our own realserver called QHttpd. > > This re

Re: modperl with SSL

2008-03-24 Thread Foo JH
What is a realserver? J. Peng wrote: hello list, we have our own realserver called QHttpd. This realserver doesn't support SSL protocal (https). So I have to develop a proxy before QHttpd to get it be compatible with SSL. I was thinking using modperl handler to do it. modperl accept the SSL con

Re: modperl on Win32 is still happening

2007-12-13 Thread Colin Wetherbee
Foo JH wrote: 3. Fast to cook, good to eat That's my favorite part of mod_perl. It goes down well with cookies, too, but tastes awful with Java. ;) And, you know, to keep this on topic, I like the idea that mod_perl on Windows can be a springboard of sorts for people who may eventually be d

Re: modperl on Win32 is still happening

2007-12-11 Thread Foo JH
Firstly: mod_perl is a good choice. :) There are other languages out there which can probably do the same job 90% of the time. But what you have chosen is a language that is: 1. OS independent 2. Highly extensible via CPAN 3. Fast to cook, good to eat It's not a question of whether you can do j

Re: modperl on Win32 is still happening

2007-12-11 Thread Vladimir Yardan
On Dec 6, 2007 10:38 AM, Foo JH <[EMAIL PROTECTED]> wrote: > Looking at the (albeit small) stream of entries to the mailing list, I'm > actually quite happy to notice that people are: > 1. Still using modperl. Some newbie questions may suggest fresh blood... > 2. Still using modperl on Win32 (desp

Re: modperl on Win32 is still happening

2007-12-11 Thread Jim Brandt
With thread support in mod_perl 2, it's much more of an option on Win32 than with mod_perl 1, so you might even see more interest from the Windows side. Foo JH wrote: Looking at the (albeit small) stream of entries to the mailing list, I'm actually quite happy to notice that people are: 1. St

Re: modperl blog system

2007-11-14 Thread Mike Schienle
On Wed, November 14, 2007 9:51 am, Martijn wrote: > On Nov 14, 2007 2:58 PM, lists user <[EMAIL PROTECTED]> wrote: >> is there a free weblog system which is developed by modperl, or common perl >> CGI? >> my company's site want to add a blog entry,surely i can write one in >> few days,but don't li

Re: modperl blog system

2007-11-14 Thread Martijn
On Nov 14, 2007 2:58 PM, lists user <[EMAIL PROTECTED]> wrote: > is there a free weblog system which is developed by modperl, or common perl > CGI? > my company's site want to add a blog entry,surely i can write one in > few days,but don't like to re-make wheels. Movable Type (http://www.movablet

Re: ModPerl make test and make install Issues

2007-10-17 Thread Fred Moyer
Suman, Shambhu wrote: ** ERROR test from make install step Warning: You do not have permissions to install into /usr/lib64/perl5/site_perl/5.8.5/x86_64-linux-thread-multi at /usr/lib/perl5/5.8.5/ExtUtils/Install.pm line 114. mkdir /usr/lib64/perl5/site_pe

Re: ModPerl make test and make install Issues

2007-10-17 Thread Perrin Harkins
On 10/17/07, Suman, Shambhu <[EMAIL PROTECTED]> wrote: > I am trying to install mod-perl on a linux box. I do not have root > permissions. You need to tell it to install a private perl lib then. Check the install instructions for the details of how to tell it where to install the perl modules. I

Re: modperl on Plesk

2007-09-21 Thread Michael Preslar
On 9/21/07, Michael Preslar <[EMAIL PROTECTED]> wrote: > Was wondering.. > > Do any of you have any experience with mod_perl on Plesk managed servers? > On the box I have here.. mod_perl 1.99 (Yeah, that should be 2.x) CentOS 4.5..And plesk is as up to date as it can be.. But.. [EMAIL PROTECTED

Re: modperl on Plesk

2007-09-21 Thread Christiaan Kras
Michael Preslar schreef: Was wondering.. Do any of you have any experience with mod_perl on Plesk managed servers? My webhost uses Plesk for all their servers and thus support the usage of mod_perl. Although very limited. I have no access to the httpd.conf file so I can only use a .htacces

Re: modperl and fprintf(stdout,...)

2007-08-17 Thread Geoffrey Young
Manoj Bist wrote: > Hi, > > I would really appreciate if someone could answer the following question > regarding modperl and writing to stdout for me: > > I have a perl binding for a C library which generates binary(audio/video) > data. To push this binary data over an HTTP response, fprintf(s

Re: modperl and fprintf(stdout,...)

2007-08-17 Thread Perrin Harkins
On 8/17/07, Manoj Bist <[EMAIL PROTECTED]> wrote: > I have a perl binding for a C library which generates binary(audio/video) > data. To push this binary data over an HTTP response, fprintf(stdout,...) > does not work in context of modperl. > Do I have to copy the binary data to a perl scalar vari

Re: modperl installation issues + Can't load APR.so

2007-02-23 Thread jayakrishnan iyer
yeah I did just that after I posted the other day and atleast those compilation errors went away. I am still having problems with server_const.t with 1/3 test failing. I think there is a problem with server_const.pm and has to be patched in the context of apache 2.2.4installation. I'll try that

Re: modperl installation issues + Can't load APR.so

2007-02-23 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 <[EMAIL PROTECTED]> On Thu, Feb 22, 2007 at 02:19:12PM -0600, jayakrishnan iyer wrote: > Thanks for the reply. I looked that up previously and found it > installed as > a shared object in my library as a part of my apache 2.2.4 > installation. I > g

Re: modperl installation issues + Can't load APR.so

2007-02-22 Thread jayakrishnan iyer
Thanks for the reply. I looked that up previously and found it installed as a shared object in my library as a part of my apache 2.2.4 installation. I guess it should be able to find it as I've supplied the path to the apache directory during Makefile generation. Do I have to set (or export) a

Re: modperl installation issues + Can't load APR.so

2007-02-21 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Feb 21, 2007 at 03:47:44PM -0600, jayakrishnan iyer wrote: > hi everyone, > > I have installed apache 2.2.4 on my computer and am trying to install mod > perl 2.0.3, but have been running into some issues. > To be specific I am having issues l

Re: Modperl crashes on win32

2007-01-28 Thread Foo JH
For your reference, I am running Apache 2.2.3 + mp2 2.0.3 + libapreq 2.6.0 dev + Perl 5.8.8 fine on my 2K3 and XP boxes, regardless of the concurrency setting. No special config used. You may want to relook your setup, or try installing on a clean machine. Tümer Garip wrote: Hi, No need for a

Re: Modperl crashes on win32

2007-01-25 Thread Perrin Harkins
On 1/25/07, Tümer Garip <[EMAIL PROTECTED]> wrote: We have a production working library system with the above platform. Recently we are trying to use Modperl with either PerlRun or Registry Everything looks smooth except the intermittent faults i quoted above. Can you attempt to isolate the par

Re: MODPERL and Reverse Proxy [patch]

2006-12-12 Thread Radoslaw Zielinski
Jonathan Vanasco <[EMAIL PROTECTED]> [08-12-2006 21:50]: > On Dec 7, 2006, at 3:37 PM, Sumit Shah wrote: >> I want the request to come to My::RequestHandler FIRST and then go >> to the ProxyPass Directive. It does not do this. It BYPASSES my I've been working on something like this recently...

Re: ModPerl 2.03 for Windows

2006-12-09 Thread Randy Kobes
On Sat, 9 Dec 2006, Octavian Rasnita wrote: Ok, thank you. I have finally installed it. I have also tried to install it using the ppm command line, but ppm4 is not very nice anymore. I have tried: ppm s mod_perl Only one package was found, and this is strange. I have the TheoryX repository

Re: ModPerl 2.03 for Windows

2006-12-09 Thread Octavian Rasnita
ta" <[EMAIL PROTECTED]> Cc: "mod_perl list" Sent: Friday, December 08, 2006 3:01 PM Subject: Re: ModPerl 2.03 for Windows On Sat, 9 Dec 2006, Octavian Rasnita wrote: Hi Randy, I have searched a lot, but I still cannot find a .ppd with mod_perl 2.03 on that site. One ca

Re: ModPerl 2.03 for Windows

2006-12-08 Thread Randy Kobes
On Sat, 9 Dec 2006, Octavian Rasnita wrote: Hi Randy, I have searched a lot, but I still cannot find a .ppd with mod_perl 2.03 on that site. One can use ppm directly to install this: C:\> ppm install http://theoryx5.uwinnipeg.ca/ppms/mod_perl.ppd for Apache/2.2, or C:\> ppm install ht

Re: ModPerl 2.03 for Windows

2006-12-08 Thread Octavian Rasnita
k you. Octavian - Original Message - From: "Randy Kobes" <[EMAIL PROTECTED]> To: "mod_perl list" Sent: Friday, December 08, 2006 12:05 PM Subject: Re: ModPerl 2.03 for Windows On Fri, 8 Dec 2006, Clinton Gormley wrote: On Fri, 2006-12-08 at 21:27 -0800, Octavia

Re: MODPERL and Reverse Proxy

2006-12-08 Thread Jonathan Vanasco
On Dec 8, 2006, at 3:59 PM, Frank Wiles wrote: Slightly off topic, but I was wondering could you just stack a I/O filter handler on the proxy? Anyone know if this is possible? thats a good idea. personally, i wish one could change when mod_proxy is called. someone pointed to apach

Re: MODPERL and Reverse Proxy

2006-12-08 Thread Frank Wiles
On Fri, 8 Dec 2006 15:50:56 -0500 Jonathan Vanasco <[EMAIL PROTECTED]> wrote: > On Dec 7, 2006, at 3:37 PM, Sumit Shah wrote: > > > I want the request to come to My::RequestHandler FIRST and then go > > to the ProxyPass Directive. It does not do this. It BYPASSES my > > handler and goes to t

Re: MODPERL and Reverse Proxy

2006-12-08 Thread Jonathan Vanasco
On Dec 7, 2006, at 3:37 PM, Sumit Shah wrote: I want the request to come to My::RequestHandler FIRST and then go to the ProxyPass Directive. It does not do this. It BYPASSES my handler and goes to the Reverse Proxy. I would appreciate any suggestions. The Apache configuration doesn't proc

Re: ModPerl 2.03 for Windows

2006-12-08 Thread Randy Kobes
On Fri, 8 Dec 2006, Clinton Gormley wrote: On Fri, 2006-12-08 at 21:27 -0800, Octavian Rasnita wrote: Do you know if there is a .ppd version of ModPerl 2.03 for Windows available somewhere? http://cpan.uwinnipeg.ca/dist/mod_perl-2.0 Just to elaborate a bit, I just placed a ppm package of thi

Re: ModPerl 2.03 for Windows

2006-12-08 Thread Clinton Gormley
On Fri, 2006-12-08 at 21:27 -0800, Octavian Rasnita wrote: > Hi, > > Do you know if there is a .ppd version of ModPerl 2.03 for Windows available > somewhere? http://cpan.uwinnipeg.ca/dist/mod_perl-2.0 Clinton Gormley [E

Re: ModPerl::RegistryLoader doesn't compile from the command line

2006-08-18 Thread Max Kanat-Alexander
On Fri, 2006-08-18 at 14:03 -0400, Perrin Harkins wrote: > You can't do that. These are APIs to apache internals. They don't work > without the httpd environment. Ah, okay. Thanks for the explanation. Changing it to Apache2::ServerUtil->server_root would probably at least make it work at

  1   2   3   >