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

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 c

Re: 答复: Internal Server Error

2007-08-21 Thread Jordan McLain
-------- > > *发件人:* Jordan McLain [mailto:[EMAIL PROTECTED] > *发送时间:* 2007年8月22日 9:26 > *收件人:* mod_perl > *主题:* Internal Server Error > > > > Hello, > > I have a module that will fail every once in a while with the error_log > message: > > Can't call

Internal Server Error

2007-08-21 Thread Jordan McLain
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: Have I got mod_perl installed?

2007-02-28 Thread Jordan McLain
I had the same problem with 0.69... I just used 0.66 instead: http://sourceforge.net/project/downloading.php?groupname=soaplite&filename=SOAP-Lite-0.66.tar.gz&use_mirror=superb-west Jordan Mclain eCarList.com On 2/28/07, Juan Jose Natera <[EMAIL PROTECTED]> wrote: > I was tr

Re: mod_rewrite

2006-11-10 Thread Jordan McLain
I am not sure what, exactly, you are trying to do. But, could you do something like: ScriptAlias /cgi-bin/ /path/to/cgi-bin/ ScriptAlias /cgi-bin2/ /path/to/cgi-bin/ # or /path/to/cgi-bin2/ RewriteEngine On RewriteRule ^/cgi-bin/cpindex.pl(.*) /cgi-bin2/cpindex.pl$1 RewriteRule ^/cgi-bin/cppro

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) = @_; >> >&g

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 it

method handlers

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

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 a

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 ha

Re: Re: DESTROY

2006-10-11 Thread Jordan McLain
onnect. But I know you should 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 i

Re: Re: Re: Re: DESTROY

2006-10-10 Thread Jordan McLain
M. Stroma <[EMAIL PROTECTED]> wrote: If I were you, I would put something like warn "I'm being destroyed."; in the DESTROY method, so you'll know for sure whether that is the case. - Original Message - From: "Jordan McLain" <[EMAIL PROTECTED]> To:

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 i

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 destroye

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 l

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 not