Re: Where is Perl compilation output when using modperl ?

2007-07-02 Thread Jens Helweg
only thing I could do was trying to isolate the problem, progressively stripping stuff from my code. I never investigated so as to get the true perl diagnose. Lionel. - Original Message - From: "Jens Helweg" <[EMAIL PROTECTED]> To: Sent: Thursday, June 28, 2007 12:09 PM

Re: Where is Perl compilation output when using modperl ?

2007-06-29 Thread Jens Helweg
John ORourke schrieb: Jens Helweg wrote: I thought perl -c mymodule.pm is no option when developing modperl handler modules because these will only run/build in the apache modperl environment and not on command line ? Not sure about your windows environment but a command-line perl -c works

Re: Where is Perl compilation output when using modperl ?

2007-06-29 Thread Jens Helweg
Michael Peters schrieb: Jens Helweg wrote: How do the modperl pros find an error in modperl modules when all apache tells is that it can't load the module instead of priting the complete error that the perl compiler/parser has with the code. I'm not sure why the error message

Re: Where is Perl compilation output when using modperl ?

2007-06-29 Thread Jens Helweg
William A. Rowe, Jr. schrieb: Alvar Freude wrote: Hi, -- Jens Helweg <[EMAIL PROTECTED]> wrote: Is there a way to get the compilers output from perl, so I can get details on what is wrong in the code ? usually you get the errors in the apache's error log. I don't know where

Re: Where is Perl compilation output when using modperl ?

2007-06-28 Thread Jens Helweg
Randy Kobes schrieb: On Thu, 28 Jun 2007, Jens Helweg wrote: Hi erveryone, I am using modperl2 with apache2 on win32 (activestate Perl 5.8). I have my own perl module included in the apache conf. Whenever I have an error in my module apache does not start and the only error message I can

Where is Perl compilation output when using modperl ?

2007-06-28 Thread Jens Helweg
Hi erveryone, I am using modperl2 with apache2 on win32 (activestate Perl 5.8). I have my own perl module included in the apache conf. Whenever I have an error in my module apache does not start and the only error message I can find is in apache's error.log: Can't load Perl file: D:/path_to

Re: Howto develop with modperl 2 ? (Restart Apache all the time ?)

2007-06-21 Thread Jens Helweg
ule.pm into: sub printHello { print 'Hi'; } 1; And you run your page again. This time, it should print 'Hi', showing that Apache took the update into account on the fly, without having to restart anything. HTH. Lionel. - Original Message - From: "Jens Helweg

Re: Howto develop with modperl 2 ? (Restart Apache all the time ?)

2007-06-21 Thread Jens Helweg
Thank you. I really missed the second ':'. Now it's not complaining anymore but the reload still doesn't work... Is there a way to verify that the Reload module has been loaded and that is works at all ? Sean Davis wrote: Jens Helweg wrote: Thanks Linonel, Jonathan. I h

Re: Howto develop with modperl 2 ? (Restart Apache all the time ?)

2007-06-20 Thread Jens Helweg
Thanks Linonel, Jonathan. I have added this to my configuration and now get the error message: failed to resolve handler `Apache2:Reload': I haven't had the chance to look at this any closer. I will do this tomorrow, though. I don't want to overstrain your help - but do you have an idea ? Je

Howto develop with modperl 2 ? (Restart Apache all the time ?)

2007-06-19 Thread Jens Helweg
Hi everyone, I have just started using modperl 2 on Windows. Apache is 2.2.4. Perl ist ActiveState Perl 5.8.8. I have setup my first perl module an included everything into the apache configuration and up to now everything works fine. But one thing that I really wonder is: I need to restart