Embperl - modperl SEGV 11 violations

1999-01-03 Thread Cliff Rayman
well - I've used up about 2 days trying to figure this out on my own. My SEGV's occur intermittantly and from different in my embperl code, but always when using $req_req. It helps to constantly switch back and forth from SSL pages and non-SSLpages. Sometimes I have to hit the server over 50 times

Apache::SSI timefmt partial support

1999-01-03 Thread Vassilii Khachaturov
I just hacked the into Apache::SSI (v. 2.08) because I desperately needed it, and I am submitting this to Ken so that he can incorporate it into the future Apache::SSI release. I didn't make anything to handle the echo_... stuff printing the time -- it is currently unaffected by (To do that, on

Positions Available

1999-01-03 Thread Hurewitz, Beth
Internet Contract Jobs Available Site Systems is a Los Angeles-based Internet consultancy that works with clients in the entertainment and hi-tech industries. We are looking for contractors to assist with current and future projects (including Internet/intranet, systems integration, web develop

Re: CGI.pm not maintaing values..

1999-01-03 Thread Bruce Johnson
Ofer Inbar wrote: > book. I happened to stumble across this bug before I'd read that > chapter, and it took literally something like 20 hours of coding and > debugging time to figure out what was going on. Then I saw it in the Only 20 hours? Man, I burned more hours than that! If only we coul

Re: XML and Apache

1999-01-03 Thread Stas Bekman
On Fri, 5 Nov 1999, Anthony Gardner wrote: > All, > > I have a problem. > > I want to use data in XML format and store it in memory for obvious reasons > of speed and to utilise the capabilities of XML. I also want to load the > data at server start up time. > > The problem arises with the s

ANNOUNCEMENT: NEW VERSION: HTML::Template 1.1

1999-01-03 Thread Sam Tregar
NAME HTML::Template - a Perl module to use HTML Templates CHANGES 1.1 - Lifted requirement that s be alone on a line - Added "path" option to new() to manipulate search path for templates. - bug fixes DESCRIPTION This module attempts make using HTM

mod_perl install & memory questions

1999-01-03 Thread Bill Moseley
I have a few questions here. I'm still way down on the learning curve... During make test I saw this. Anything to worry about? Server seems to run fine. modules/stage...FAILED test 1 Failed 1/2 tests, 50.00% okay modules/status..Internal Server Error dubious Test retur

Re: CGI.pm not maintaing values..

1999-01-03 Thread Frank D. Cringle
Ofer Inbar <[EMAIL PROTECTED]> writes: > Alex Krohn <[EMAIL PROTECTED]> wrote: > (mis)handles lexically scoped variables. This oddity only comes into > play if you use a lexical variable in a block *and* a sub-block of > that block, and you run that same code multiple times, and the values > are

Re: Attempt to free unreferenced scalar during global destruction.

1999-01-03 Thread Andrei A. Voropaev
Hi! I've searched thru archives and came up with the following conclusion. Please correct me if I'm wrong. There was some patch related to the problem that made it to mod_perl 1.21 but seems like that patch fixes something else and not the problem. To really fix the problem I need to upgrade fro

Re: CGI.pm not maintaing values..

1999-01-03 Thread Alex Krohn
On Fri, 05 Nov 1999 14:12:43 -0500 Eugene Miretskiy <[EMAIL PROTECTED]> wrote: > Take a look at: > http://perl.apache.org/guide/obvious.html#my_scoped_variable_in_nested_s Thanks, that was just the part I was looking for. Cheers, Alex Gossamer Threads Inc. -

RE: CGI.pm not maintaing values..

1999-01-03 Thread Young, Geoffrey S.
did you read http://perl.apache.org/guide/obvious.html#my_scoped_variable_in_nested_s I know this has been on the list before ;) try: use CGI; use strict; my $in = new CGI; print $in->header(); print "Init Value: ", $in->param('val'), "\n"; &foobar($in->param('val')); sub foobar { my @arg

Re: CGI.pm not maintaing values..

1999-01-03 Thread Ofer Inbar
Alex Krohn <[EMAIL PROTECTED]> wrote: > #!/usr/local/bin/perl > # > use CGI; > use strict; > my $in = new CGI; > print $in->header(); > print "Init Value: ", $in->param('val'), "\n"; > &foobar(); > > sub foobar { >print "Sub Val

Re: CGI.pm not maintaing values..

1999-01-03 Thread Tobias Hoellrich
You read through the guide? Well, you must have missed this section :-) http://perl.apache.org/guide/porting.html#Sometimes_it_Works_Sometimes_it_ Tobias At 10:54 AM 11/5/99 -0800, you wrote: >Hi, > >I've read through the guide, and tried to search through the list, but >CGI.pm is a pretty comm

Re: CGI.pm not maintaing values..

1999-01-03 Thread Christoph Wernli
Alex, check out http://perl.apache.org/guide/obvious.html#my_scoped_variable_in_nested_s Cheers, -Christoph Alex Krohn wrote: > > Hi, > > I've read through the guide, and tried to search through the list, but > CGI.pm is a pretty common keyword, ;). This script which I thought > should work

CGI.pm not maintaing values..

1999-01-03 Thread Alex Krohn
Hi, I've read through the guide, and tried to search through the list, but CGI.pm is a pretty common keyword, ;). This script which I thought should work fine under mod_perl using Apache::Registry doesn't: #!/usr/local/bin/perl # u

Re: XML and Apache

1999-01-03 Thread Greg Stark
There was a database posted on freshmeat specifically designed for storing XML data. I'm not sure what that would mean but perhaps it would be the solution for your problem? "Anthony Gardner" <[EMAIL PROTECTED]> writes: > All, > > I have a problem. > > I want to use data in XML format and st

Re: XML and Apache

1999-01-03 Thread Vassilii Khachaturov
I think you can do better doing XML-oriented research here first before you dig into apache/mod_perl if you don't find some quick solutions. Here are some leads. I don't go deeper -- we're here for mod_perl, check out comp.text.sgml and the SGML/XML home page at oasis. http://www.oasis-open.org/co

Re: Apache::Session hangs script

1999-01-03 Thread Jeffrey Baker
[EMAIL PROTECTED] wrote: > > > "Kip" == Kip Cranford writes: > > Kip> I'm using Apache/1.3.9 (Unix), mod_perl/1.21, Apache-Session-1.03, with > Kip> MySQL 3.22.25. I'm using the the Apache::Session::DBI module with MySQL > Kip> to provide some simple session management. I'm running the scr

RE: Problems parsing PerlAccessHandler directive...

1999-01-03 Thread Miguel Navarro
I'm experiencing the same problem and looking for help. Miguel Navarro [EMAIL PROTECTED] -- From: Einar Johnsson Sent: Friday, November 05, 1999 6:51 AM To: [EMAIL PROTECTED] Subject: Problems parsing PerlAccessHandler directive... Hello. I just compiled mod_perl-1.21 with: perl Ma

Re: XML and Apache

1999-01-03 Thread Chip Turner
"Anthony Gardner" <[EMAIL PROTECTED]> writes: > I have a problem. > > I want to use data in XML format and store it in memory for obvious > reasons of speed and to utilise the capabilities of XML. I also want > to load the data at server start up time. > > The problem arises with the size of th

XML and Apache

1999-01-03 Thread Anthony Gardner
All, I have a problem. I want to use data in XML format and store it in memory for obvious reasons of speed and to utilise the capabilities of XML. I also want to load the data at server start up time. The problem arises with the size of the data. I end up with six children each with 150MB o

Problems parsing PerlAccessHandler directive...

1999-01-03 Thread Einar Johnsson
Hello. I just compiled mod_perl-1.21 with: perl Makefile.PL EVERYTHING=1 When I try to use the PerlAccessHandler directive in my httpd.conf I get: Invalid command 'PerlAccessHandler', perhaps mis-spelled or defined by a module not included in the server configuration When the Makefile.PL script

Re: confining hash changes to individual httpd child

1999-01-03 Thread David Mitchell
Kevin Ward <[EMAIL PROTECTED]> writes: > I want to make it so that it only highlights the first instance of a term > in a page, so what I did was to delete the term from the hash after it has > been highlighted. The trick, surely, is not to delete entries from the global hash, but add entries t

Re: confining hash changes to individual httpd child

1999-01-03 Thread Chris Winters
Hi Kevin, Maybe I'm missing something, but what's preventing you from creating another hash (scoped with 'my' so that it doesn't exist for the next request) that you use for each request to track the words already tagged on the page? Chris * Kevin Ward ([EMAIL PROTECTED]) [991105 08:49]: > >

confining hash changes to individual httpd child

1999-01-03 Thread Kevin Ward
Hi, Let me explain what I am working on: I have written an Apache module (which I am calling Glossary) which, when it receives a page request, highlights terms in the page which are found in an online glossary. This way a user can click on the highlighted term and go view the description. All

Re: Hooking into core

1999-01-03 Thread Stas Bekman
> I would like to be able to add to or change the way errors are handled. I > am hoping that is possible to somehow create a routine in perl that I can > get called before or instead of the standard core routine. > > I want to be able to construct a page that contains a more user friendly > resp

Re: Attempt to free unreferenced scalar during global destruction.

1999-01-03 Thread Stas Bekman
On Thu, 4 Nov 1999, Andrei A. Voropaev wrote: > Hi! > > For some reason I get lots of > > 'Attempt to free unreferenced scalar during global destruction.' > > in my error log. Any one can give me a pointer where to search for the > problem? Long time we didn't hear about this... search the a

RE: mod_perl on Apache 2.0

1999-01-03 Thread Eric Cholet
Jeffrey Baker: > I believe -DMULTIPLICITY is already in 5.005_03. Check "man perlembed". > Yes but I believe the problem is that it isn't thread-safe, that's supposed to be fixed in 5.6. It might be already the case with 5.005_62, I haven't checked yet. -- Eric