Re: modules to be left enabled in a mod_perl back-end server?

1999-10-07 Thread Doug MacEachern
On 1 Oct 1999, Stephen Zander wrote: "Stephen" == Stephen Zander [EMAIL PROTECTED] writes: Stephen Is the SetHandler functionaity of mod_mime available from Stephen within mod_perl somehow? This was the one ovbious Stephen problem I could see with removing everything.

ANNOUNCE: HTML-Embperl 1.2b10 (pre 1.2)

1999-10-07 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.2b10.tar.gz has entered CPAN as file: $CPAN/authors/id/GRICHTER/HTML-Embperl-1.2b10.tar.gz size: 251896 bytes md5: b2f0eb3cace188fded36fdd1020b092e Embperl is a module for embedding Perl code in HTML pages. See

RE: HTML::Embperl and 'undefined symbol: perl_eval_sv'

1999-10-07 Thread Doug MacEachern
On Sun, 3 Oct 1999, Gerald Richter wrote: When I use HTML::Embperl for instance like: perl -MHTML::Embperl -e 'HTML::Embperl::Execute(some_embperl.epl)' I got: perl: error in loading shared libraries: /usr/local/lib/site_perl/5.00561/i686-linux/auto/HTML/Embperl/Embperl.so:

Re: FAQ Regarding FastCGI/Mod_Perl

1999-10-07 Thread Hervé Renault
On Wed, Oct 06, 1999 at 05:23:14PM -0400, Viren Jain wrote: Is there a FAQ regarding the differences between FastCGI and mod_perl, and take a look at the archives search engine : http://forum.swarthmore.edu/discussions/epi-search/modperl.html there are a few interesting posts regards

Location / ignored

1999-10-07 Thread Miguel A.L. Paraz
Hi, I'm working with the WING web e-mail system, and have it running on two systems. Now I'm working on it on a third system with the same configuration (Apache/1.3.9 mod_perl/1.21), but this bit of config stopped working: PerlModule Wing::Balance Location /

RE: Apache::VMonitor in action

1999-10-07 Thread Eric Cholet
On Thursday, October 07, 1999 11:44 AM, Stas Bekman [SMTP:[EMAIL PROTECTED]] wrote: Hi, Take a look at the Apache::VMonitor in action, a moment before I'm going to protect it. http://www.singlesheaven.com:8080/sys-monitor Please, be gentle -- it's a production server. Thank you!

Guide addition?

1999-10-07 Thread Eric Strovink
The guide points out that __DATA__ and __END__ tokens are not allowed in Registry scripts. However, the error generated into the logfile in this case complains "Missing right bracket", and the line given is the last script line before the token. Oddly, if one *adds* a (syntactically incorrect)

Re: Server Stats

1999-10-07 Thread Dave Hodgkinson
Matt Sergeant [EMAIL PROTECTED] writes: Sadly Phillip Greenspun, while a great writer, isn't that fabulous technically (although he's on the right track by not recommending NT). See how he also recommends HP-UX as the fastest and most stable Unix around. Yeah, but have you seen the kit they

RE: Compiling modperl on unixware

1999-10-07 Thread Feldman, Leonid
I am running Unixware 2.1.3. -Original Message- From: Tom Hughes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 06, 1999 5:55 PM To: [EMAIL PROTECTED] Subject: Re: Compiling modperl on unixware In message [EMAIL PROTECTED] "Feldman, Leonid" [EMAIL PROTECTED] wrote:

Re: Precomplie ASP ?

1999-10-07 Thread raptor
Lionel Benhaim wrote: ]- add to your startup.pl file, something like this : use Apache::ASP (); Apache::ASP-Loader('/home/httpd/project/', "(asp|htm|html)\$"); You must have first in httpd.conf something like this : PerlRequire /home/httpd/project/global/startup.pl Or you can add it directly

Re: Guide addition?

1999-10-07 Thread Andrei A. Voropaev
On Thu, Oct 07, 1999 at 03:59:37PM +0200, Stas Bekman wrote: That's almost correct, what it does is taken a script sitting at URI /perl/test.pl: print "Content-type: text/plain\n\n" print "mod_perl rules!\n" perl actually sees it as: package Apache::ROOT::perl::test_2epl;

Re: Guide addition?

1999-10-07 Thread Stas Bekman
So if you script included __END__ or __DATA__ token like: print "Content-type: text/plain\n\n" print "mod_perl rules!\n" __END__ some junk here perl actually sees it as: package Apache::ROOT::perl::test_2epl; use Apache qw(exit); sub handler {

RE: Location / ignored

1999-10-07 Thread David Harris
Miguel A.L. Paraz wrote: I'm working with the WING web e-mail system, and have it running on two systems. Now I'm working on it on a third system with the same configuration (Apache/1.3.9 mod_perl/1.21), but this bit of config stopped working: PerlModule Wing::Balance

Re: Guide addition?

1999-10-07 Thread Frank D. Cringle
"Andrei A. Voropaev" [EMAIL PROTECTED] writes: Would it be possible to remove everything after __END__ before wrapping it into a function? That requires a full-blown perl parser, to decide if __END__ is really __END__. print "Content-type: text/plain\n\n" print EOT; # Example perl code # #

Re: Apache::ASP, Sessions and content handlers

1999-10-07 Thread Dmitry Beransky
Thanks Joshua, Sigh, I guess I have to redesign my code. It hadn't even occurred to me that ASP's session management may not be available outside of ASP. It's a shame, though, to have use two different code bases to do essentially the same task. What would be nice if all of ASP's session

RE: can't resolve symbol 'perl_get_sv'

1999-10-07 Thread Crawford, David
The server built using the latest CVS archive produces the same errors. I'm going to wait for the next tree build to be posted (should be any minute) if it still doesn't work I'm thinking my best bet is to back-down my version of Perl to 5.005_03. I'm using Apache 1.3.9, mod_perl 1.21, and

RE: can't resolve symbol 'perl_get_sv'

1999-10-07 Thread Eric Cholet
On Thursday, October 07, 1999 7:02 PM, Crawford, David [SMTP:[EMAIL PROTECTED]] wrote: The server built using the latest CVS archive produces the same errors. I'm going to wait for the next tree build to be posted (should be any minute) if Are you referring to a new build of Perl? I haven't

Re: Guide addition?

1999-10-07 Thread Cliff Rayman
make __DATA__ available to which subroutine?? only way I can think to do that effectively is: read the data, write it to a temporary file, watching our for any security concerns, and replace the standard DATA file handle with on that is opened to the temporary file that was written. cliff

Urgent--Any limit on Hash table in Shared Memory?

1999-10-07 Thread lma
I used IPC::shareable module to construct a nested HASH table in shared memory. It worked fine during "on-demand" test. When I move from "on-demand" to "preload", An error came up saying that "No space left on device". The machine has 0.5GB menory and most is still available. Each entry in

weird mod_perl startup problems

1999-10-07 Thread Eugene Miretskiy
Hello, After upgrading my machine to FreeBSD3.3, I ran into the problems loading modules at startup time... I would like to load the following modules at start up (I have them in startup.perl file loaded from httpd.conf): use Apache::Registry; use Apache::Request; use Apache::DBI ();

Re: Apache::ASP, Sessions and content handlers

1999-10-07 Thread Joshua Chamas
Dmitry Beransky wrote: Thanks Joshua, Sigh, I guess I have to redesign my code. It hadn't even occurred to me that ASP's session management may not be available outside of ASP. It's a shame, though, to have use two different code bases to do essentially the same task. What would be

Re: Apache::ASP, Sessions and content handlers

1999-10-07 Thread Dmitry Beransky
At 12:38 PM 10/7/99 , Joshua Chamas wrote: If you don't need these event handlers, then you could use Apache::Session very well for you needs, as well as ASP $Session, then you can turn sessions off in ASP, and set $Session to an Apache::Session like: You're right, I don't currently need event

Re: how do i make it select the compiler i want?

1999-10-07 Thread Tom Hughes
In message [EMAIL PROTECTED] "Feldman, Leonid" [EMAIL PROTECTED] wrote: I am trying to make modperl 1.21/apache 1.3.9 compile under gcc, but it always picks /bin/cc. I believe it uses whatever was used to build perl, otherwise there's guarantee you'll be able to link it against

internal_redirect and POST

1999-10-07 Thread Dmitry Beransky
hi, I've been playing around with internal redirects of POST requests. They seem to work fine as long as I don't call Apache::content() or any other function that reads a request's content. However, as soon as I read it, internal_redirect ceases to work (it just freezes until the connection

Re: Apache::ASP Apache Authentication?

1999-10-07 Thread Jeremy Domingue
Hey Joshua, Actually, I haven't done anything out of the ordinary to the config... I just have Apache 1.3.9, mod_perl 1.21, and Apache::ASP 0.16. In the root document dir (in my case /home/httpd/html), in my .htaccess file I have the following: FilesMatch "\.(asp)$" SetHandler