Re: Can't build Apache::Dispatch on Windows / Perl 5.8.0

2003-09-16 Thread Steve Hay
Stas Bekman wrote: Steve Hay wrote: [...] Having a pointer to where the mod_perl.lib library was installed would be useful. I'm not sure calling it MODPERL_STATIC_LIB_LOCATION would be the best thing on Win32, as it's not a static library as such, but something could be come up with ... Well

[PATCH] Re: mp2 with perl-5.8.1 on Windows

2003-09-15 Thread Steve Hay
Randy Kobes wrote: On Fri, 12 Sep 2003, Steve Hay wrote: Hi, Has anybody else got mp2 (CVS) working with recent perl-5.8.1's on Windows? I've got it building, but I can't start the Apache server at all. (It's fine without the mod_perl bits in the httpd.conf file.) See this thread on p5p

Re: [PATCH] Re: mp2 with perl-5.8.1 on Windows

2003-09-15 Thread Steve Hay
Randy Kobes wrote: On Mon, 15 Sep 2003, Steve Hay wrote: PS. Randy: How do you that stacktrace output that you've posted? Is that using MSVC++, or something else? Hi Steve, I'm using MSVC++ ... When a problem like this occurs, an offer is made to call up the VC++ debugger, where

Re: Can't build Apache::Dispatch on Windows / Perl 5.8.0

2003-09-12 Thread Steve Hay
process to thave that library installed, or could that be added to the next release? Anyway, Apache::Dispatch is now up and running for me. Thanks, Randy! - Steve

mp2 with perl-5.8.1 on Windows

2003-09-12 Thread Steve Hay
-lists/perl5-porters/2003-09/msg00795.html Cheers, - Steve

Re: Can't build Apache::Dispatch on Windows / Perl 5.8.0

2003-09-12 Thread Steve Hay
Stas Bekman wrote: Randy Kobes wrote: On Fri, 12 Sep 2003, Steve Hay wrote: I believe that mod_perl 2 now installs the mod_perl.lib somewhere to solve that kind of problem. Is there an option in the mod_perl 1 build process to thave that library installed, or could that be added to the next

Can't build Apache::Dispatch on Windows / Perl 5.8.0

2003-09-11 Thread Steve Hay
: unresolved external symbol [EMAIL PROTECTED] blib\arch\auto\Apache\Dispatch\Dispatch.dll : fatal error LNK1120: 11 unresolved externals NMAKE : fatal error U1077: 'link' : return code '0x460' Stop. Any ideas? - Steve

Re: Help wanted with locations / configuration

2003-09-10 Thread Steve Hay
Steve Hay wrote: Thomas Klausner wrote: Hi! On Mon, Sep 08, 2003 at 04:51:55PM +0100, Steve Hay wrote: The project is going to be written as a series of mod_perl handlers - one for the main home page, and others for various sub-components. Each handler is implemented by a separate module

Re: Help wanted with locations / configuration

2003-09-09 Thread Steve Hay
Marc Slagle wrote: On Mon, 2003-09-08 at 11:51, Steve Hay wrote: It also needs to have access to various static resources (images, stylesheets, JavaScript libraries etc.). Thus, I want to have something like this: /myproject [mp1] /myproject/component1 [mp1] /myproject

Re: Help wanted with locations / configuration

2003-09-09 Thread Steve Hay
Perrin Harkins wrote: On Mon, 2003-09-08 at 11:51, Steve Hay wrote: Thus, I want to have something like this: /myproject [mp1] /myproject/component1 [mp1] /myproject/component2 [mp1] ... /myproject/images [static] /myproject/javascript [static] /myproject

Re: Help wanted with locations / configuration

2003-09-09 Thread Steve Hay
petersm wrote: Steve Hay [EMAIL PROTECTED] wrote Location /myproject SetHandler perl-script PerlHandler MyProject-dispatcher /Location LocationMatch ^/myproject/(images|javascript|stylesheets) SetHandler default-handler /LocationMatch Correct me if I'm wrong, but can't you just

Help wanted with locations / configuration

2003-09-08 Thread Steve Hay
in thinking that I don't need to specify SetHandler: perl-script for a PerlFixupHandler? That's only for the main PerlHandler response handler, isn't it?) Does either of these options have any benefit over the other? Are there other better ways to do it? Thanks in advance, - Steve

RE: HTTP POST: parameters empty when using ModPerl::Registry(okay when using ModPerl:PerlRun)...

2003-08-14 Thread Steve Bannerman
Perrin, Thanks for your response...my replies below: -- Steve Bannerman [EMAIL PROTECTED] 44.(0)1865.273866 -Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED] Sent: 06 August 2003 20:40 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: HTTP POST

RE: HTTP POST: parameters empty when usingModPerl::Registry(okay when using ModPerl:PerlRun)...

2003-08-14 Thread Steve Bannerman
Perrin, Thanks...your explanation makes sense. I was thinking of the subroutine as a method on a class and that the objects in the class had a cgi instance associated with them. I was thinking in the object paradigm rather than in the procedural paradigm. Cheers -- Steve Bannerman [EMAIL

Re: [mp2] Child process exited

2003-08-14 Thread Steve Hay
Jean-Sebastien Guay wrote: Steve, and the good news for you is that I've reproduced your problem. GREAT! Thank you so much for persevering through this! So do you have a traceback or some info that the developers might be able to use to track this down? Not sure how to get a stack

RE: HTTP POST: parameters empty when using ModPerl::Registry (okay when using ModPerl:PerlRun)...

2003-08-14 Thread Steve Bannerman
Stas, Replies below: -- Steve Bannerman [EMAIL PROTECTED] 44.(0)1865.273866 -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: 05 August 2003 18:07 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: HTTP POST: parameters empty when using ModPerl

Re: [mp2] Child process exited

2003-08-14 Thread Steve Hay
Jean-Sebastien Guay wrote: Steve, How did you build Apache 2? I downloaded the binaries... Sorry, can't help there. Please keep me posted as to your progress. OK, I've now got Apache 2 building (with a little off-list help from Randy Kobes - the secret is to use the .zip sources

Re: [MP1.28 + perl maint. 20512] Build failure due to error in Apache/ExtUtils.pm

2003-08-14 Thread Steve Hay
Sreeji K Das wrote: I tried to compile mod_perl-1.28 with perl maint. 20512 (http://www.iki.fi/jhi/[EMAIL PROTECTED]). I had a build failure (different errors each time trying to build). Have you tried http://www.iki.fi/jhi/[EMAIL PROTECTED] ? That snapshot worked OK for me on WinXP. - Steve

HTTP POST: parameters empty when using ModPerl::Registry (okay when using ModPerl:PerlRun)...

2003-08-14 Thread Steve Bannerman
; while (read($inputfile,$buffer,2096)) { print FILE $buffer; } close(FILE); undef $buffer; } sub printError { print header(); print Content-type: text/plain\n; print Status: 500$\n; print Message: Internal Error\n; exit; } Cheers -- Steve Bannerman [EMAIL PROTECTED] 44.(0

Re: [mp2] Child process exited

2003-08-14 Thread Steve Hay
! makefile.win(39) : fatal error U1050: Need \srclib\ apr, apr-iconv and apr-util Stop. == If I look inside the srclib directory then I only find apr, apr-util and pcre, not apr-iconv. Where is that supposed to come from? How did you build Apache 2? Steve

Re: [mp2] Child process exited

2003-08-14 Thread Steve Hay
version (2.10, I think) if you suspect that it might be involved in the problem. - Steve

RE: HTTP POST: parameters empty when using ModPerl::Registry (okay when using ModPerl:PerlRun)...

2003-08-06 Thread Steve Bannerman
the same array of bytes still be in the global 'file' parameter? Cheers -- Steve Bannerman [EMAIL PROTECTED] 44.(0)1865.273866 -Original Message- From: Christopher Knight [mailto:[EMAIL PROTECTED] Sent: 05 August 2003 18:20 To: Stas Bekman; [EMAIL PROTECTED] Cc: [EMAIL

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-04 Thread Steve Hay
boot_libapreq Only the fix previously posted by Stas (adding 'SKIP' = [qw(dynamic dynamic_lib dynamic_bs)], to both WriteMakefile() calls) works for me so far, but Joe had a problem that... Steve

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-04 Thread Steve Hay
Michael G Schwern wrote: On Mon, Aug 04, 2003 at 08:46:27AM +0100, Steve Hay wrote: I tried changing the s/// to: $string =~ s{ \$\(INST_DYNAMIC\)}{}g; $string =~ s{ \$\(INST_BOOT\)}{}g; (I've dropped the trailing spaces in the patterns), which produced: dynamic :: $(FIRST_MAKEFILE

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-04 Thread Steve Hay
Michael G Schwern wrote: On Mon, Aug 04, 2003 at 09:35:55AM +0100, Steve Hay wrote: Somehow, it has contrived to disappear! It always used to exist there, which is why it didn't occur to me to check :-( I must have lost it somewhere along the line when shoe-horning earlier MakeMaker's

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-01 Thread Steve Hay
Michael G Schwern wrote: On Thu, Jul 31, 2003 at 03:23:36PM +0100, Steve Hay wrote: This patch finally fixes it for me: I'm glad you guys got it working, but there's still the problem of why MakeMaker's behavior changed. Since I tend not to touch the XS building code much its likely

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-01 Thread Steve Hay
Steve Hay wrote: Michael G Schwern wrote: If I could see the Makefiles from 6.03 and 6.12 I might be able to figure out what's different. Also, if you could try various alpha versions between those two, show the Makefiles and whether or not they exhibited the behavior that would help alot

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-01 Thread Steve Hay
Steve Hay wrote: This bug evidently goes back a long way: MM 6.06_02 fails in the same way as 6.13. I tried to use MM 6.06_01, but it wouldn't build itself (don't know how to make 'C:\perl5\libNAME'). Instead, I knife-and-forked it into place, but when I tried to use it to build libapreq, I

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-01 Thread Steve Hay
Michael G Schwern wrote: On Fri, Aug 01, 2003 at 10:03:20AM +0100, Steve Hay wrote: This bug evidently goes back a long way: MM 6.06_02 fails in the same way as 6.13. I tried to use MM 6.06_01, but it wouldn't build itself (don't know how to make 'C:\perl5\libNAME'). Instead, I knife

Re: Apache-print() problem with UTF-8 data in Perl 5.8

2003-07-31 Thread Steve Hay
Steve Hay wrote: Randy Kobes wrote: On Tue, 29 Jul 2003, Steve Hay wrote: Is anybody going to take a serious look at the problem that I previously reported with Apache-print()'s handling of UTF-8 data in Perl 5.8? The patch that I sent (http://marc.theaimsgroup.com/?l=apache-modperlm

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-07-31 Thread Steve Hay
? It should only build Request.dll and Cookie.dll, which would probably explain why boot_libapreq is undefined. I'll continue looking into it myself, and can supply more info to anyone that wants it, but I thought I'd better raise the alarm quickly first. Steve

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-07-31 Thread Steve Hay
Request.so is linked, it links libapreq.so dynamically, and of course it can't resolve it later when loading. This patch fixes things for me in libapreq and works with MM 6.03 and 6.12. Steve, please confirm that it works for you and I'll commit it. No, it doesn't fix it :-( My problem sounds

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-07-31 Thread Steve Hay
Stas Bekman wrote: Steve Hay wrote: Stas Bekman wrote: Stas Bekman wrote: Steve Hay wrote: Stas Bekman wrote: Here is what happens: MM 6.03 used to create libapreq.a but not libapreq.so, libapreq.a was just a by product and never was intented to be installed. Request.so was statically

Apache-print() problem with UTF-8 data in Perl 5.8

2003-07-29 Thread Steve Hay
be fine. The brokenness of Apache-print() under perl-5.8.0 on Windows et al would also need documenting somewhere since it can't be fixed properly. Maybe it's just easier to change the version-checks to 5.8.1 for all platforms, and document the broken behaviour under 5.8.0? Steve

Re: Apache-print() problem with UTF-8 data in Perl 5.8

2003-07-29 Thread Steve Hay
Stas Bekman wrote: Steve Hay wrote: Is anybody going to take a serious look at the problem that I previously reported with Apache-print()'s handling of UTF-8 data in Perl 5.8? Steve, At the moment I'm busy fixing things for p5.8.1 for which mod_perl 2.0 is one of the showstoppers

Re: Apache-print() problem with UTF-8 data in Perl 5.8

2003-07-29 Thread Steve Hay
Randy Kobes wrote: On Tue, 29 Jul 2003, Steve Hay wrote: Is anybody going to take a serious look at the problem that I previously reported with Apache-print()'s handling of UTF-8 data in Perl 5.8? The patch that I sent (http://marc.theaimsgroup.com/?l=apache-modperlm=105912130001046w=2) seems

Re: Undocumented behaviour in Apache-print()?

2003-07-25 Thread Steve Hay
Steve Hay wrote: Stas Bekman wrote: I have attempted to shoe-horn this into mod_perl's print() method (in src/modules/perl/Apache.xs). Here's the diff against mod_perl 1.28: [Unfortunately, I've had to comment-out the first part of that if block, because I got an unresolved external symbol

Re: Undocumented behaviour in Apache-print()?

2003-07-16 Thread Steve Hay
Stas Bekman wrote: Steve Hay wrote: It's only Perl 5.8 that has the special UTF-8 flag which the functions above all operate with respect to. If a Perl variable contains a sequence of bytes that make up a valid UTF-8 character, but the string is not flagged with Perl's special flag

Re: Undocumented behaviour in Apache-print()?

2003-07-15 Thread Steve Hay
Hi Stas, Stas Bekman wrote: Steve Hay wrote: Hi, I've just spent quite a while tracking down a problem with a web page generated by a mod_perl program in which 8-bit ISO-8859-1 characters were not being shown properly. The software runs via Apache::Registry, and works fine under mod_cgi

Re: Undocumented behaviour in Apache-print()?

2003-07-15 Thread Steve Hay
no change should be required. Sure enough, looking at the doio.c source file in Perl 5.6.1, the entire chunk of code that I half-inched above is not present. Steve

Undocumented behaviour in Apache-print()?

2003-07-11 Thread Steve Hay
think the difference in mod_perl's print() is still worth mentioning in the documentation somewhere. Cheers, Steve

Re: [ANNOUNCE] mod_perl-1.28

2003-07-04 Thread Steve Hay
Hi Randy, Randy Kobes wrote: On Thu, 3 Jul 2003, Steve Hay wrote: Philippe M. Chiasson wrote: The URL http://perl.apache.org/dist/mod_perl-1.28.tar.gz has entered CPAN I still get the same test failures that I reported before when RC2 was announced: modules/request...FAILED

Re: [ANNOUNCE] mod_perl-1.28

2003-07-03 Thread Steve Hay
XP, Perl 5.8.0, Apache 1.3.27, Apache-Test 1.03, libapreq-1.2 (built/installed *after* mod_perl 1.28). I used to have All tests successful under mp-1.27. (I note that Apache::Reload didn't make it in either; I thought the plan was to put a backport of the version from mp2 into it?) Steve

Re: [mp1] 1.28 release candidate #2

2003-06-25 Thread Steve Hay
Hi Randy, Randy Kobes wrote: On Tue, 24 Jun 2003, Steve Hay wrote: Philippe M. Chiasson wrote: On Tue, 2003-06-24 at 23:00, Steve Hay wrote: Philippe M. Chiasson wrote: Now bringing you the second mod_perl 1.28 release candidate. [snip] Windows XP, Apache

Re: [mp1] 1.28 release candidate #2

2003-06-24 Thread Steve Hay
a little longer for 1.28 if that could make it in. Steve

Re: [mp1] 1.28 release candidate #2

2003-06-24 Thread Steve Hay
Philippe M. Chiasson wrote: On Tue, 2003-06-24 at 23:00, Steve Hay wrote: Philippe M. Chiasson wrote: Now bringing you the second mod_perl 1.28 release candidate. [snip] Please give this release a spin and report back any problems or failed tests to: [EMAIL PROTECTED] as soon as possible

RE: Building mod-perl 2 for cygwin

2003-02-19 Thread Steve Baldwin
-thread-multi-64int /usr/local/lib/perl5/site_perl/5.8.0 /usr/local/lib/perl5/site_perl . -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 19 February 2003 10:07 AM To: Steve Baldwin Cc: [EMAIL PROTECTED] Subject: Re: Building mod-perl 2 for cygwin

RE: Building mod-perl 2 for cygwin

2003-02-17 Thread Steve Baldwin
as to the arguments you recommend to build a version of Perl that works fine 'standalone', as well as embedded (which I presume is the case with mod-perl) if that is possible. Steve -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED]] Sent: Monday, 17 February 2003 4:03 PM Cc: Steve

Building mod-perl 2 for cygwin

2003-02-15 Thread Steve Baldwin
/cygwin-multi-64int /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl . Thanks for any help Steve

Re: [mp2]make test fails

2003-01-21 Thread Steve Glaus
On Tue, 21 Jan 2003 16:05:05 +1100 Stas Bekman [EMAIL PROTECTED] wrote: Steve Glaus wrote: On Mon, 20 Jan 2003 11:29:01 -0500 [EMAIL PROTECTED] wrote: Hi, I'm trying to build mod_perl2 with threads enabled. I recompiled apache with the worker mpm, built mod_perl which seemd

Re: [mp2]make test fails

2003-01-20 Thread Steve Glaus
On Mon, 20 Jan 2003 11:29:01 -0500 [EMAIL PROTECTED] wrote: Hi, I'm trying to build mod_perl2 with threads enabled. I recompiled apache with the worker mpm, built mod_perl which seemd to build fine.. however, when I go to 'make test' it gives me the following error: Cannot load

Re: [mp2]make test fails

2003-01-20 Thread Steve Glaus
On Mon, 20 Jan 2003 11:29:01 -0500 [EMAIL PROTECTED] wrote: Hi, I'm trying to build mod_perl2 with threads enabled. I recompiled apache with the worker mpm, built mod_perl which seemd to build fine.. however, when I go to 'make test' it gives me the following error: Cannot load

Re: mp2.0 Apache::Request

2003-01-17 Thread Steve
In the documentation of nodperl-2.0, I cannot find any references to libapreq and $r-param. correct me if I'm wrong anyone,but I don't think Apache::Request has been ported to modperl2 yet.. for now I'm using cgi

Re: modperl : how resolve conflict funtion name in different package

2003-01-16 Thread Steve Piner
at the beginning of the file saying 'package pack1;' and pack2.pm should have a line saying 'package pack2;' I'm only guessing what the problem is here, as you don't state exactly what the error message is. Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: An URL is not Invoking the Anticipated Perl Module [mp2]

2003-01-10 Thread Steve D
together various web resources but remain uncertain how to procede. Further help is appreciated. Stas, you have already replied to this once, and to another setup problem for which I was having. I am grateful. Thank you. Steve D wrote: The problem: Apache is generating File does not exist within

An URL is not Invoking the Anticipated Perl Module

2003-01-09 Thread Steve D
urrDate.pm # Edition: 1600.08012003 # Editor: Steve Davis # Install.: Powder Springs, GA # Purpose: To display the current date # package MyApache::CurrDate; use strict; use warnings; use Apache::RequestRec (); use Apache::RequestIO (); use Apache::Const -co

[mp2] input filter

2003-01-07 Thread Steve
a lot Steve P.S Thanks for bearing with me through my posting debacles

Re: input filter

2003-01-06 Thread Steve
completes eventually, it just takes a very long time. As soon as I take the filter handler out of httpd.conf it works perfectly Anyone know if this is a configuration issue or what? Thanks a lot for any insights Steve SORRY! The httpd.con configuration was a typo! It's really

Re: perl's system() w/ apache under win2k

2003-01-03 Thread Steve Hay
recently with a mod_perl program on WinNT is that the Win32::Shortcut module (used to create Windows shortcuts, a bit (but not much) like Unix links) doesn't work unless the Apache service is allowed to Interact with the Desktop. - Steve

RE: mod_perl make failed: cannot find -lapr

2003-01-03 Thread Steve Davis
is added to the mod_perl web page, the better. Steve Your help will be very much appreciated to resolve the following issue. When attempting to make mod_perl.so, the make script 'almost' makes a touchdown but fails before getting to the finishing line

mod_perl.c Not Compatible with Apache

2003-01-03 Thread Steve Davis
have an idea of how I might go about solving this problem? Any advance given would be appreciated. Steve D

RE: mod_perl.c Not Compatible with Apache

2003-01-03 Thread Steve Davis
and provide an update. Let me also add, I'm grateful for your help. Thank you. Steve D The following comments were provided from Randy Kobes: I think in general the problem mod_perl.c is not compatible with this version of Apache. means that mod_perl was compiled against a different set

RE: mod_perl.c Not Compatible with Apache

2003-01-03 Thread Steve Davis
with receiving the same degree of cooperation, support, and camaraderie. Therefore, let me continue to express my gratitude. It means a lot to me. Thank you. Steve Steve D -Original Message- From: Randy Kobes [mailto:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 5:19 PM To: Steve

mod_perl make failed: cannot find -lapr

2002-12-31 Thread Steve Davis
be acquired somehow. I confuse my ignorance and lack of familiarity with these packages so I could be off. Thank you. Steve The environment is described below. Apache has been configured with --prefix=/etc/httpd --with-mpm=prefork. Perl has been configured with -des -Dusethreads -Doptimize

Relative path problem

2002-12-24 Thread Steve Li
I installed the Win32 mod_perl 1.0 in Windows XP Professional just to see how it works. This distribution contains Perl 5.6.1 and Apache_1.3.27, together with mod_perl-1.27. In my index.pl, I call another perl file using a reletive path, like ../lib/work.pm. But I found this file cannot be

Re: Problem compiling mod_perl 1.27 on Windows

2002-12-17 Thread Steve Hay
Randy Kobes wrote: On Mon, 16 Dec 2002, Steve Hay wrote: Is there some other way, for Win32, to achieve what the PERL_USELARGEFILES=0 hack tried to do? This seems hard to do without recompiling either the standard Apache sources (to enable large_files support) or else the standard

Problem compiling mod_perl 1.27 on Windows

2002-12-16 Thread Steve Hay
switch the Perl that I'm building against back to the standard 5.8.0 (by simply re-naming directories) and then re-run the nmake command above then mod_perl compiles and links with no errors. Can anyone shed any light on this? - Steve = Summary of my perl5 (revision 5 version 8 subversion

Re: Problem compiling mod_perl 1.27 on Windows

2002-12-16 Thread Steve Hay
Randy Kobes wrote: On Mon, 16 Dec 2002, Steve Hay wrote: I'm having trouble compiling mod_perl 1.27 (with Apache 1.3.27 / Perl 5.8.0) on Windows (XP SP1 with MS VC++ 6.0 SP5). It builds fine with Perl 5.8.0 standard sources, but I'm just trying to upgrade my Perl to the slightly patched

Re: mp2: Pb using HTML::Entities

2002-11-25 Thread Steve Piner
different from euro symbol). If the character you're getting is a circle with 4 'spokes' extending from it to the top left, top right, bottom left and bottom right, then it's working - however, that's the universal currency symbol. For the euro, use euro; or #8364; Steve -- Steve Piner Web

Re: FW: mod_perl / PerlAuthenHandler question

2002-10-28 Thread Steve Piner
It sounds like mod_perl is installed and running OK. Quoting from http://httpd.apache.org/docs/mod/core.html#limit: In the general case, access control directives should not be placed within a limit section. Do you need the limit section? Can you run without it? Steve Mitchel

Re: [OT] migrating from Apache to iPlanet; any mod_perl counterpart?

2002-10-09 Thread Steve Grazzini
-0.24/ But it's dated 1998, and iplanet is multi-threaded. And of course, the module is open-source as well. -- Steve

Java and Perl integration

2002-08-16 Thread Lihn, Steve
Hi, This may not be the most proper place to ask. I am just curious if there is a way to call Java (or servlet) from Perl code or such an integration project under way? Steve Lihn -- Notice: This e-mail message

Re: mod_perl PerlAccessHandler/PerlAuthenHandler question

2002-07-28 Thread Steve Piner
building mod_perl. Unless you have reason not to, I'd recommend that you compile it with EVERYTHING=1. Steve Piner Harry Zhu wrote: I'm a verteran CGIer but a new mod-perl user. I have got the mod-perl running fine for the content handling. But when I try to step in to other stages like

Re: Using Constants from seperate file

2002-07-28 Thread Steve Piner
at startup? Steve Piner allan juul wrote: hi i wish to use use constants defined in a seperate file. my problem is, that sometimes it works sometimes it doesn't. when failing, the error_log says Bareword is not allowed so i guess it sometimes never loads my constants file at all

Re: New mod_perl site and oddness with IE

2002-07-17 Thread Steve Piner
: relative's should work - it just struck me as the first thing that wasn't necessary in the style sheet. Possibly irritating an IE bug just a little too much) Hope this helps, Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: New mod_perl site and oddness with IE

2002-07-17 Thread Steve Piner
other browser software, please check and see if anything else is broken there as well. thanks a lot! /allan Looks good to me with on Win98SE * IE 5.50.4807.2300 (SP2) * Netscape 4.79 * Mozilla 2002053012 * Opera 6.04 -- Steve Piner Web Applications Developer Marketview Limited http

Re: New mod_perl site and oddness with IE

2002-07-17 Thread Steve Piner
? Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Anti caching and auto refresh problem

2002-06-12 Thread Steve Walker
Server: Apache/1.3.22 (Unix) mod_perl/1.26 Pragma: no-cache Cache-Control: no-cache Connection: close Content-Type: image/gif Expires: Wed, 12 Jun 2002 15:28:59 GMT I know it might be a bit off topic but I was wondering if anyone else has run into this problem? Thanks, Steve

Apache Error Log

2002-06-11 Thread steve
Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error logging. I don't seem to get my apache stderr untill I shutdown/restart the server. Thenit prints out the whole thing in one big

Fw: Apache Error Log

2002-06-11 Thread steve
- Original Message - From: steve To: [EMAIL PROTECTED] Sent: Sunday, June 09, 2002 7:42 AM Subject: Apache Error Log Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error

Apache Error Log

2002-06-11 Thread steve
Hey people.. Wondering if someone could help me with this... I recently started using modperl2/apache2. Everything seems to work ok except for Apache's error logging. I don't seem to get my apache stderr untill I shutdown/restart the server. Thenit prints out the whole thing in one big

GD::Graph probs

2002-05-01 Thread Steve Tattersall
(GRAPH, Topsearches.jpg) || die Cannot open Topsearches.jpg: $!\n; print GRAPH $graph-gd-jpeg(200); print @searches\n; print @title\n; #print $num; $count =0; close (INFILE); Steve Tattersall Archives Hub Programmer MIMAS Manchester Computing Oxford Road Manchester M13 9PL Tel: 0161 275 6054

RE: schedule server possible?

2002-04-30 Thread Lihn, Steve
to disable this thread from receiving request, so that it can be used solely for scheduling purpose. Any thumb up or down on this? Steve Lihn FIS Database Support, Merck Co., Inc. Tel: (908) 423 - 4441 -Original Message- From: Garnet R. Chaney [mailto:[EMAIL PROTECTED]] Sent

Re: Cheap and unique

2002-04-30 Thread Steve Piner
ideas? Has anyone else faced this problem? tia David I'm just curious - what's wrong with the function you're already using? Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: [Fwd: Re: Cheap and unique]

2002-04-30 Thread Steve Piner
David Jacobs wrote: I'm just curious - what's wrong with the function you're already using? Steve Mod_Perl hangs on to it's PID, so it's no longer unique. (I _believe_) But the timestamp will make it unique - as long as you're not serving several requests per second. If you

RE: schedule server possible?

2002-04-29 Thread Lihn, Steve
elegant!? --Steve -- Notice: This e-mail message, together with any attachments, contains information of Merck Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, proprietary copyrighted

schedule server possible?

2002-04-29 Thread Lihn, Steve
, or even Telephony Server. But I will need a thread that processes the backend stuff, such as maintaining the database and message queue (more like a cron). Is this configuration possible? Steve Lihn FIS Database Support, Merck Co., Inc. Tel: (908) 423 - 4441

Apache::OK error

2002-04-25 Thread Lihn, Steve
:\Apache2/blib/lib/Apache2/Apache/Echo.pm line 25. Compilation failed in require at (eval 2) line 3. What do I miss? --Steve -- package Apache::Echo; use strict; use Apache::Connection (); use APR::Socket (); use constant BUFF_LEN = 1024; sub handler { my Apache::Connection $c = shift

RE: Apache::Echo does not work

2002-04-25 Thread Lihn, Steve
This combination allows Apache2 to compile. use Apache::Const qw/:common/; return OK; But when I telnet to that port. I do not get anything. Error log does not show anything as LogLevel is set to debug. Can someone take a close look what is wrong in Apache::Echo? Steve Lihn FIS Database

RE: Apache::Echo does not work

2002-04-25 Thread Lihn, Steve
on win32 behaves slightly different! Thanks for the help. Steve Lihn FIS Database Support, Merck Co., Inc. Tel: (908) 423 - 4441 -Original Message- From: Lihn, Steve [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 5:10 PM To: 'Per Einar Ellefsen'; Mod-perl list

Re: [ANNOUNCE] The New mod_perl logo - results now in...

2002-03-17 Thread Steve Piner
'vie' problems. Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: [OT] RE: Installing Perl::Magick

2002-02-19 Thread Steve Werby
PROTECTED]?subject=subscribe Both lists are what I consider medium volume. You may also want to check for a list related to your Linux distro. A good place to find archives of hundreds of mailing lists which have a nice search interface is http://marc.theaimsgroup.com/. HTH, -- Steve Werby President

Re: Question...

2002-02-13 Thread Steve Piner
invalid cookie. When they go back to the page, they'll send the invalid cookie, and you can then prompt them to log in or whatever. You'll get the invalid cookie sent back for images on that page, but that usually isn't a problem. Steve Piner Ryan Parr wrote: I think I'm missing something

Re: Single login/sign-on for different web apps?

2002-01-16 Thread Steve Piner
of unique identifier in the path or query string, but this may not be secure enough for your purposes. Oh yeah, it'd break if they didn't have images on. :-( Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: Apache::AuthCookie login faliure reason

2001-11-23 Thread Steve van der Burg
we send to the browser my $form = HERE; html head ... $error ... I hope that these code snippets are enough to get you started. ...Steve -- Steve van der Burg Information Services London Health Sciences Centre (519) 685-8300 ext 35559 [EMAIL PROTECTED]

Re: Installing modules

2001-11-04 Thread Steve Piner
make make test And if you're happy with the results, su to root and type make install Hope this helps. Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: Install problems

2001-11-04 Thread Steve Piner
]: Leaving directory `/usr/local/etc/libapreq-0.33/c' make[1]: *** [subdirs] Error 2 I'm confused. It looks like you might not have the 'apache-devel' package installed. (You did say you were on RedHat, didn't you?) Try installing that. Steve -- Steve Piner Web Applications Developer Marketview

RE: [OT] pdf creation

2001-10-31 Thread Steve Smith
simran writes: I believe there is also a Content-disposition tag you can use to tell the browser what to name the file... As mentioned below in my original post, it doesn't work in all browsers. Steve

Re: Apache 1.3.22 and modperl 1.26.

2001-10-30 Thread Steve Piner
PERL_SECTIONS=1 on the command line. Steve -- Steve Piner Web Applications Developer Marketview Limited http://www.marketview.co.nz

Re: [OT] pdf creation

2001-10-28 Thread Steve Smith
in most browsers. The solution is to extend the URL past the handler/script, e.g. : http://server/perl/pdfgen.pl/MYPDFFILE.pdf Apache will dispatch this to pdfgen.pl, but the browser will assume the default filename is MYPDFFILE.pdf. Hope this helps, Steve

  1   2   >