Re: Crypt::CBC

2006-04-10 Thread Ian Joyce
You can always use version 2.12. http://search.cpan.org/~lds/Crypt-CBC-2.12/ --Ian On 4/10/06, Martin Moss [EMAIL PROTECTED] wrote: All, I had some code which ran the old version of Crypt::CBC (2.12). Using these headers to create the object:- my $cipher = new

Re: OT - warnings

2006-04-05 Thread Ian Joyce
Change your LogLevel[1] in apache to error instead of warn? 1: http://httpd.apache.org/docs/2.0/mod/core.html#loglevel --Ian On 4/5/06, Jonathan Vanasco [EMAIL PROTECTED] wrote: I have about 140 packages/modules for my mod_perl project (heavy use of oop) trying to be a good coder,

Re: Broken pipe

2006-02-17 Thread Ian Joyce
See LogLevel[1]. 1: http://httpd.apache.org/docs/1.3/mod/core.html#loglevel --Ian On 2/17/06, Octavian Rasnita [EMAIL PROTECTED] wrote: Hi, I have seen in the error log of Apache the following line (for more times, exactly the same): [Fri Feb 17 13:58:04 2006] [info] [client

Re: apachectl freezes

2006-02-10 Thread Ian Joyce
On 2/10/06, Jeff MacDonald [EMAIL PROTECTED] wrote: Hi, I've installed mod_perl 2.0.2 and apache 2.0.55 on FreeBSD using the ports system. When I add the LoadModule line to my httpd.conf and run apachectl configtest It just hangs. Sing configtest IS a diagnostic, I'm a bit lost on what

Re: apache and mod_perl

2005-05-12 Thread Ian Joyce
http://perl.apache.org/docs/2.0/user/porting/compat.html On 5/12/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I'm trying to migrate a website from apache 1.x and mod_perl 1.x to apache 2.x and mod_perl 2.x I get the following error when trying to start httpd. Starting

[mp1] Apache::SizeLimit + Solaris 10

2005-03-07 Thread Ian Joyce
Solaris 10 has an osvers of 2.10. Apache::SizeLimit says 2.10 = 2.6 (line 168) so it tells me Apache::SizeLimit not implemented on your platform. when it clearly it is. --Ian

Re: segmentation fault

2005-03-04 Thread Ian Joyce
On Fri, 4 Mar 2005 14:57:59 +0200, Octavian Rasnita [EMAIL PROTECTED] wrote: [snip] I remember that when I have installed mod_perl, I couldn't install it using make test because it gave me some errors, so I have used just make install. It gave me some errors that time that I couldn't

Re: Trouble Setting POST_MAX

2005-02-21 Thread Ian Joyce
On Sat, 19 Feb 2005 20:37:17 -0500, jonathan vanasco [EMAIL PROTECTED] wrote: { my $r = Apache::Request-new(shift, POST_MAX= .1 * 1024 * 1024,# in bytes, so 100K DISABLE_UPLOADS = 0

Re: https and $r-error_log

2005-02-16 Thread Ian Joyce
On Thu, 17 Feb 2005 08:38:29 +1100 (EST), Jie Gao [EMAIL PROTECTED] wrote: Hi All, I have a problem: $r-log_error('xxx') works with http but does not work with https. Any hints on debugging this? Check and make sure both http and https are logging to where you expect. --Ian

Re: Using mod_php and mod_perl

2005-02-14 Thread Ian Joyce
[SNIP] I'm all about using the right-tool-for the right job, and I'm debating now whether it would be worth doing some of that user-presentation stuff under php. Not to skirt the issue, but what type presentation tasks are you finding difficult to do under mod_perl? Maybe we can help you

Apache::DBI

2005-01-29 Thread Ian Joyce
I'm running Apache 1.33 and mod_perl 1.29. My question is how can I use Apache::DBI for connection pooling for my DBD::mysql connections and not use it for my DBD::ODBC conections. Is this even possible? I don't want any connection pooling at all for DBD::ODBC for reasons I won't get into.

Re: restart apache for mod perl development

2005-01-21 Thread Ian Joyce
Give Apache::Reload a try. On Sat, 22 Jan 2005 14:59:53 +1700, mi cuenta [EMAIL PROTECTED] wrote: Hello I'm using modperl 1.26 and apache 1.3.26 on Debian Woody I'm programming with mod_perl and have to restart apache every time to see the changes made on my code is there a way to

Re: ModPerl Installiation help

2005-01-19 Thread Ian Joyce
http://perl.apache.org/docs/2.0/user/install/install.html On Wed, 19 Jan 2005 15:28:45 +, steve silvers [EMAIL PROTECTED] wrote: I'm running Redhat 8 pretty sure the default Apache installed is 2.0, not infront of my laptop at the moment. Could someone please point me in the direction to

Re: OT: Free Software as a Security Hole

2005-01-12 Thread Ian Joyce
I am assuming you are trying to start a flame war here. With open software I can at least check if there is a back door. Think on that for a while. -Ian On Wed, 12 Jan 2005 09:21:01 -0800, Goehring, Chuck, RCI - San Diego [EMAIL PROTECTED] wrote: I post here for lack of a better place. Sorry

Re: mod_perl presence at OSCON (and other CONs) is at danger

2004-06-08 Thread Ian Joyce
Stefan Loones [EMAIL PROTECTED] 06/08 2:50 pm I also find it a very interesting option when people can give comments within the documentation on a per subject basis (like you can do at http://www.php.net/manual/en/function.usort.php and at http://dev.mysql.com/doc/mysql/en/JOIN.html).

Current URL

2004-02-13 Thread Ian Joyce
This may be day 1 stuff for most of you, but... What's the quckest way to determine the URL that made the current request in mod_perl 1? -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette:

Re: Current URL

2004-02-13 Thread Ian Joyce
returns the whole thing? Thanks --Ian Tom Schindl [EMAIL PROTECTED] 02/13/04 07:53AM It's: 8 $r-connection-remote_ip 8 See: http://perl.apache.org/docs/1.0/api/Apache.html#_cr_E_gt_connection Ian Joyce wrote