Re: PDF creation tools

2007-09-10 Thread Jordan McLain
PDF::API2 is awesome. I use it to create entire pdf documents as well as to lay text over already existing pdf documents. Jordan On 9/5/07, Bill Whillers [EMAIL PROTECTED] wrote: Hello, I'm looking for a fast and simple module for creating simple PDF format documents from mostly text data

Internal Server Error

2007-08-21 Thread Jordan McLain
. This only happens intermittently... Does anyone have any ideas? Apache/1.3.37 (Unix) mod_perl/1.29 mod_ssl/2.8.28 OpenSSL/0.9.7g mode_per Thanks, Jordan Mclain

Re: 答复: Internal Server Error

2007-08-21 Thread Jordan McLain
method starts out with: sub handler ($$) { my ($class, $r) = @_; For some reason $r is not defined. This only happens intermittently... Does anyone have any ideas? Apache/1.3.37 (Unix) mod_perl/1.29 mod_ssl/2.8.28 OpenSSL/0.9.7g mode_per Thanks, Jordan Mclain

Re: Internal Server Error

2007-08-21 Thread Jordan McLain
I might have solved my own problem... I was calling: PerlHandler Package::Name instead of: PerlHandler Package::Name-handler although I am still confused as to why the first was working... Jordan On 8/21/07, Colin Wetherbee [EMAIL PROTECTED] wrote: Jeff Pang wrote: Try change the codes

Hiring

2006-11-06 Thread Jordan McLain
Hello, My company is currently looking to hire a mod_perl developer in the Dallas area. If anyone is interested, drop me a line. Thanks, Jordan

Re: Re: method handlers

2006-10-27 Thread Jordan McLain
Ahh, I see. Great tip. Thanks alot. Jordan On 10/27/06, John ORourke [EMAIL PROTECTED] wrote: Jordan McLain wrote: just noticed... in the actual code 'handler' is prototyped with ($$) sub handler { my ($class, $r) = @_; my $self = ... # something hashref-ish I will end up

Re: Re: When is perl.apache.org going to be back online?

2006-10-26 Thread Jordan McLain
Good job getting perl.apache.org back up. No big deal, just wanted to end the thread on a positive note. Jordan Mclain eCarList.com On 10/25/06, Philip M. Gollucci [EMAIL PROTECTED] wrote: this one time in band camp Adam Prime x443 said on 10/25/06 12:17: Every project site on apache.org

method handlers

2006-10-26 Thread Jordan McLain
to something, but instead calls methods directly with the blessed ref? thanks, Jordan Mclain eCarList.com

Re: method handlers

2006-10-26 Thread Jordan McLain
just noticed... in the actual code 'handler' is prototyped with ($$) On 10/26/06, Jordan McLain [EMAIL PROTECTED] wrote: Hello, This is more of a style and usage question. Sorry for the stupid question. I am rewriting one of my apps to be more OO so that I can abstract its' functionality

Re: Re: DESTROY

2006-10-11 Thread Jordan McLain
be able to write it to get the destructor to be called Jordan McLain wrote: I have written a handler that calls a constructor to a module that I have written. I do not believe that the subsequent destructor is being called unless I explicitly call it. Is this a feature of mod_perl? I would

Re: Re: DESTROY

2006-10-11 Thread Jordan McLain
Good call, thanks for the help guys. I really appreciate it. Jordan On 10/11/06, Philip M. Gollucci [EMAIL PROTECTED] wrote: Dondi M. Stroma wrote: I believe that since $db is a global variable it's not going to be destroyed. If you got rid of the 'use vars' and changed it to sub handler

DESTROY

2006-10-10 Thread Jordan McLain
I have written a handler that calls a constructor to a module that I have written. I do not believe that the subsequent destructor is being called unless I explicitly call it. Is this a feature of mod_perl? I would think that every time an instance of the module is created, it would be

Re: Re: Re: DESTROY

2006-10-10 Thread Jordan McLain
That is not the problem... The problem comes in when I do not use Apache::DBI and I still end up with alot of mysql threads. The problem is that I do not think DESTROY is being called. On 10/10/06, Jordan McLain [EMAIL PROTECTED] wrote: That is not the problem... The problem comes in when I

Re: A newbie modperl problem

2006-09-28 Thread Jordan McLain
It seems from your message that Feedback.pm is in /home/apache1.3/fbl/. Feedback.pm needs to be in /home/apache1.3/fbl/CorpFB/. Jordan On 9/28/06, GZ Dark [EMAIL PROTECTED] wrote: At first I'll say sorry that have no experience for writting the modperl handler. When I wrote a simple handler

mod_perl and ssl

2006-09-12 Thread Jordan McLain
Hello all, I am trying to put together a server setup for mod_perl, ssl and static images. Here is my scenario: The application I have written has taken off, so I am converting it to mod_perl (not a problem, I have most of the code ported to modules on a test machine and find mod_perl to be