Re: Books - was How practical is that Practical mod_perl?

2003-06-21 Thread Alex McLintock
com/ has reviews of several perl books. The system is being enhanced to make it easier to submit, find, and link to book reviews. (And yes - new development is being done in perl) Any feedback on how what sort of book reviews you like, and what you find uesful is welcome. Alex

Re: Segmentation Fault with mod_php and mod_perl

2002-08-29 Thread Alex Lee
Doug and Stas, I try to compile PHP with largefile support with no luck so I follow Doug's advice and rebuild mod_perl with PERL_USELARGEFILES=0. This solves the problem. Thanks a lot for helping me out! Alex >From: Doug MacEachern <[EMAIL PROTECTED]> >To: Alex Lee

Re: Segmentation Fault with mod_php and mod_perl

2002-08-28 Thread Alex Lee
n standalone_main () #8 0x18e488 in main () Thanks for offering to help! Alex >From: Stas Bekman <[EMAIL PROTECTED]> >To: Alex Lee <[EMAIL PROTECTED]> >CC: [EMAIL PROTECTED] >Subject: Re: Segmentation Fault with mod_php and mod_perl >Date: Wed, 28 Aug 2002 11:00:42 +0800

Re: Segmentation Fault with mod_php and mod_perl

2002-08-27 Thread Alex Lee
re you going to say this is a PHP bug? :-) But how come if I only activate PHP module, it works fine. Alex >From: Stas Bekman <[EMAIL PROTECTED]> >To: Alex Lee <[EMAIL PROTECTED]> >CC: [EMAIL PROTECTED] >Subject: Re: Segmentation Fault with mod_php and mod_perl >Date: Tue, 2

Re: Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread Alex Lee
anged both to static linked, it compiled fine. But then keep getting segmentation fault when accessing the default page. The strange thing is that perl CGI programs run fine. Alex >From: "C. David Wilde" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "Alex Le

Segmentation Fault with mod_php and mod_perl

2002-08-26 Thread Alex Lee
Received signal #11, SIGSEGV [default] siginfo: SIGSEGV SEGV_MAPERR addr=0x0060 *** process killed *** Please help! Or if you know of a working combination of Apache/mod_perl/mod_php on Solaris 8, let me know.. Thanks! Alex _ Send and receive Hotmail on your mobile device: http://mobile.msn.com

Re: [Fwd: Re: Cheap and unique]

2002-04-30 Thread Alex Krohn
Hi, > >I'm just curious - what's wrong with the function you're already using? > > Mod_Perl hangs on to it's PID, so it's no longer unique. (I _believe_) TIMESTAMP . $$ . $GLOBAL++ might work just as well (as $global will persist).. Cheers, Alex -- Alex Krohn <[EMAIL PROTECTED]>

Multiple Cookie Header Bug with Apache::ProxyRewrite

2002-04-06 Thread Alex Menendez
hello, Christian I found a bug with how Apache::ProxyRewite handles cookies. Our proxy server was trying to display a remote application that heavily uses cookies butthe application was failing miserably. I compared the headers of what the proxy server was sending to the client vs. what the r

RE: inheritance and Apache::Request

2002-02-14 Thread Alex Porras
27;s happening because, after adding a "new" method to FooBar, when I try to call $foobar->param (which I have not overridden), the child process segfaults. Oh well, I guess at this point I need to go back to reading more on perl OO since it's not sinking. Thanks for your help

inheritance and Apache::Request

2002-02-14 Thread Alex Porras
I am slowly learning about OO from Tom's tutorial, and was able to do inheritance with two dummy classes I wrote, including adding methods to the subclass and have them work too. However, when I tried to inherit from Apache::Request, it doesn't seem to work right. Maybe this isn't an Apache::

[OT] Re: New mod_perl Logo

2002-01-30 Thread Alex Porras
> On Wed, 30 Jan 2002, Ron Savage wrote: > > All these American-style names are verging on the racist. People should instead take into consideration the alternative suggestions you provided...oh wait, nevermind. --Alex

RE: is there something wrong with my http header?

2002-01-28 Thread Alex Porras
I'm a goof. That data is from an imap server--I forgot to decode it first. Thanks, --Alex > -Original Message- > From: Robert Landrum [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 28, 2002 4:16 PM > To: [EMAIL PROTECTED] > Subject: Re: is there something wrong

is there something wrong with my http header?

2002-01-28 Thread Alex Porras
$r->content_type('image/gif'); $r->send_http_header; $r->print( $data ); $r->exit(OK); Any thoughts? TIA, --Alex

RE: Can't call Apache::Request->new()

2001-12-14 Thread Alex Porras
Paul, I have version .33 working on perl 5.6.1 on a redhat 7.2 box (I compiled perl myself). However, if I do the command you do below, I get the same error. --Alex > -Original Message- > From: Paul Makepeace [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 14, 2001 12:4

[OT] RE: Programmer Wanted

2001-10-12 Thread Alex Porras
Actually, the funny thing about that job is that you don't make much money writing code, but by hiring other mode_perl programmers to work for you. --Alex > -Original Message- > From: Joe Breeden > Sent: Friday, October 12, 2001 3:56 PM > To: [EMAIL PROTECTED] > Sub

RE: CGI.pm params not being cleared?

2001-10-02 Thread Alex Harper
Does this help? Alex -- Alex Harper Configuration Management [EMAIL PROTECTED] "Use whatever you think of first" -- Larry Wall > -Original Message- > From: Perrin Harkins [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 01, 2001 11:43 PM > To: Alex Harper

RE: CGI.pm params not being cleared?

2001-10-01 Thread Alex Harper
I'm using a mod_perl 1.26 RPM I built using the RedHat RPM prep files and dropping in the 1.26 code. I believe it is built EVERYTHING=1. Apache::Status indicates all hooks are enabled, including: PerlStackedHandlers Enabled Alex > -- > From: Daniel > Sent:

RE: CGI.pm params not being cleared?

2001-10-01 Thread Alex Harper
acked handlers seem to fail (at least in this case). Daniel, thanks for pointing me in the right direction! Alex -- Alex Harper Configuration Management [EMAIL PROTECTED] "Use whatever you think of first" -- Larry Wall > -Original Message- > From: Daniel [mailto:[EMAI

RE: CGI.pm params not being cleared?

2001-10-01 Thread Alex Harper
1 Note the mismatch between the query string and the params. Apache is running just 2 servers (StartServers 2) and I removed the CGI.pm precompile from the mod_perl startup. Any other suggestions? I'm feeling a bit desperate... Alex -- Alex Harper Configuration Management [EMAIL PROTECTED] "Use whatever you think of first" -- Larry Wall

RE: CGI.pm params not being cleared?

2001-10-01 Thread Alex Harper
I actually forgot to mention that we had tried it with "my $cgi" and $cgi. Neither worked. As for switching to Apache::Request, no can do. We need to maintain mod_cgi compatibility for at least a few more months. Alex -- Alex Harper Configuration Management [EMAIL PROTECTED] "U

CGI.pm params not being cleared?

2001-10-01 Thread Alex Harper
doing something wrong... Any suggestions? Thanks for any assistance, Alex -- Alex Harper Configuration Management [EMAIL PROTECTED] "Use whatever you think of first" -- Larry Wall

RE: Setting PerlRequire in a section

2001-09-21 Thread Alex Harper
ther issues we had earlier (which we solved by moving all our packages into unique namespaces). I'll look into the other configuration solution you mentioned, although I expect they provide more than we really need for these applications. Thanks, Alex

RE: Setting PerlRequire in a section

2001-09-21 Thread Alex Harper
n the per-application startup.pl file. Its a pain to maintain a per-server times per-application list of lib paths, but that fixes us until I get to see what mod_perl 2.0 has in store for me :-) Thanks again for all the responses, Alex > -Original Message- > From: Perrin Harkins [

RE: Setting PerlRequire in a section

2001-09-20 Thread Alex Harper
tartup scripts, but solves the problem in the most obvious way. Maybe this will be easier in mod_perl 2.0? Thanks for the help, Alex

Setting PerlRequire in a section

2001-09-19 Thread Alex Harper
hat I really need is a way to modify the path to the startup and the path to lib on the basis of the VirtualHost and I'd like to avoid hardcoding the paths. Thanks, Alex -- Alex HarperBroadJump, Inc. [EMAIL PROTECTED]Configuration Manager

RE: [OT] New Micro$oft vulnerability?

2001-09-18 Thread Alex Porras
Adi Fairbank wrote: > I wish someone would just write a worm that would put these > IIS machines out of their misery and stop causing the rest > of us such a headache. I think that it would be a lot easier to write a worm that puts IIS admins out of their misery--they're already busy applying

Re: memory leaking with closures

2001-09-07 Thread Alex Krohn
my $sub = sub { my $sub2 = sub { $var; } }; } # $var and $sub should be gone, but memory is never freed sleep 1; # Don't crash things =) } will grow forever as $var never seems to be freed even when everything should go out of scope, definately a perl bug, not a mod_perl one. =) Oddly, if you just do my $sub = sub { $var; }; it does not grow, definately something strange going on. Happens on perl 5.004_04, 5.005_03 and 5.6.1. Cheers, Alex

memory leaking with closures

2001-09-06 Thread Alex Krohn
any ideas/workarounds (besides don't do that). Cheers, Alex

Apache::MP3 error

2001-09-06 Thread Alex Porras
e at /usr/lib/perl5/5.6.0/CGI.pm line 258. Any ideas? --Alex

mod_perl compile errors in perl_util.c

2001-08-24 Thread Alex Gottschalk
0/src' make: *** [apache_httpd] Error 2 This is on the following system: Solaris 2.6 Generic_105181-25 sun4u sparc SUNW,Ultra-80 perl 5.005_62 built for sun4-solaris gcc 2.95.2 mod_perl 1.26 apache 1.3.20 We'd really love to start using mod_perl for our Virtual Host redirects, so any help would be seriously appreciated. Thanks! --Alex Alex Gottschalk [EMAIL PROTECTED] (650) 724-7668

Re: Oracle::DBD under mod_perl on Sun/Solaris

2001-08-22 Thread Alex Povolotsky
to database fails since that. > > I was NOT able to reproduce this bug outside of mod_perl. > > Are you running out of memory? ... should not... HOWEVER, Apache::Resource, when it was installed, dropped children on MEMORY at the time of connect to Oracle. I've set limit to 128 Mb, it didn't help. Alex.

Re: Problem with DBD::Oracle with mod_perl

2001-08-22 Thread Alex Povolotsky
will be shared when > Apache forks, and sharing a database handle is bad for the same reasons > sharig a file handle is. Open a connection in the child process instead. > You can use connect_on_init() from Apache::DBI if you like. I misunderstood you. I was using connect_on_init. With or without Apache::DBI, it fails Alex.

Re: Problem with DBD::Oracle with mod_perl

2001-08-22 Thread Alex Povolotsky
ening a connection in the parent > process (in startup.pl or equivalent)? Yes, yes. ... whithout it - runs... a little longer. Alex.

Problem with DBD::Oracle with mod_perl

2001-08-22 Thread Alex Povolotsky
/lib/SQL.pm line 221. and all Oracle-using perl programs within Apache stops to work until I restart Apache. With two clients fetching a page both at one time, I'm 100% getting this in less than a minute. I have read all READMEs I've found around, and I couldn't reproduce this error by standalone perl scripts. Any help, anyone? Alex.

Re: Oracle::DBD under mod_perl on Sun/Solaris

2001-08-22 Thread Alex Povolotsky
hods.pm l ine 102. and EVERY connect to database fails since that. I was NOT able to reproduce this bug outside of mod_perl. Alex.

Re: DSO problems summary? (was Re: Children dying)

2001-08-16 Thread Alex Povolotsky
x27;; on # uname -a SunOS netra 5.8 Generic_108528-09 sun4u sparc SUNW,UltraAX-i2 am I safe? Or what should I rebuild with what flags? Seems like I'm suffering from dying children problem... My main apache dies sometimes, bringing neraly everything (well, except server-status) down. Alex.

Re: [OT] Inspired by closing comments from the UBB thread.

2001-08-01 Thread Alex Porras
ded perl (which you, as the graphics person, probably don't know anything about), while the perl developer works on the perl portions of the code, then you might be sniffing some glue. This the motivation for some (if not most) of the templating solutions Perrin mentioned. --Alex

Re: Ultimate Bulletin Board? Jezuz.

2001-07-28 Thread alex
s. If you have the resources to run mod_perl, no reason you should be using UBB. Use something with an SQL backend. If you do decide you want to stick with UBB, feel free to drop me an email as I've written several conversion scripts and can give you some pointers on how the member database i

Re: remove me

2001-07-20 Thread Alex Porras
Hmm, if we could do that, it would be like "Survivor". The "tribe" could get members removed off the list. =) --Alex Gordon Stewart wrote: > > hi > > Can someone please remove me. > > Thanks > > Gordon

Re: CGI module or Apache

2001-07-09 Thread Alex Porras
There's Apache::Request, which is the equivalent of CGI.pm in the areas of form submissions and Apache::Cookie for cookie handling. If you're not using the HTML rendering capabilities of CGI.pm, you may look into those two. --Alex Kevin Schroeder wrote: > > Hello, >

RE: Concepts of Unique Tracking

2001-05-25 Thread Alex Porras
the first method to collect aggregate information about what percentage of your users are accessing what parts of your website the most/least, so you could customize your website appropriately. That does not require me to know who everyone is, personally speaking. --Alex > -Original Messa

RE: Apache::Session / No-Cookie-Tracking

2001-05-25 Thread Alex Porras
f content. =P P.S. I'm pretty sure Explorer 5.x does NOT store session cookies on disk, but other browsers may. --Alex > -Original Message- > From: Joe Breeden > Sent: Friday, May 25, 2001 12:55 PM > To: '[EMAIL PROTECTED]' > Subject: RE: Apache::Session / No

[JOB] Contract XS Job

2001-05-17 Thread Alex Krohn
and I can send you the module for a quote. Cheers, Alex Gossamer Threads Inc. -- Alex KrohnEmail: [EMAIL PROTECTED] Internet Consultant Phone: (604) 687-5804 http://www.gossamer-threads.com Fax : (604) 687-5806

RE: Segmentation fault

2000-12-12 Thread Alex Algard
and any suggestions. ____ Alex Algard > -Original Message- > From: Per Moeller [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, December 12, 2000 2:49 PM > To: [EMAIL PROTECTED] > Subject: Segmentation fault > > > Does anyone have problem with Apache 1.

mod_perl segfault

2000-12-10 Thread Alex Vandiver
andler Options FollowSymLinks As you can guess, mod_perl is not a DSO, and I'm not using mod_php, etc. The only other possibly applicable fact is that LD_LIBRARY_PATH needed to get set (/usr/local/lib/perl5/5.6.0/CORE) in order for mod_perl to compile, as well as for Apache to run. I don't know if this is unusual or not.. Anyways, hope that someone has an inkling as to what's going on here. Many thanks, -Alex Vandiver

Re: WebDAV support in mod_perl

2000-11-29 Thread Alex Menendez
I am very interested in any developments in this area. I currently am doing dav stuff in Java for macromedia.com and would be interested in porting it to my first love: Perl! please let me know of any developments. I am willing to help, if you need it. cheers, -amen On Wed, 29 Nov 2000, Ian K

init handler possible?

2000-11-23 Thread Alex Krohn
quent request automatically? I haven't been able to figure out if this is possible, the only thing I can see is adding the subroutine call after the use manually. Any ideas? Cheers, Alex Gossamer Threads Inc. -- Alex KrohnEma

GET request size

2000-08-25 Thread Alex Menendez
hello, all is there any limit to the size of a GET request url when it is generated from inside a mod_perl module? I have a POST cgi coming in with a bunch of data and I would like to turn it into a GET url so I can effectively use lookup_uri and run from the Apache::SubRequest class. I know

Re: how to set more then one cookie

2000-08-25 Thread Alex Menendez
you can also use Apache::Cookie and do something like this: my $cookie = Apache::Cookie->new($r, -name=> 'q_string', -value => $value, -expires => '+3h',

Re: STDIN and subrequests

2000-08-24 Thread Alex Menendez
, Aug 23, 2000 at 10:03:59PM -0700, Alex Menendez wrote: > > hello, all > > > > I am currently trying to have a cgi execute in a mod_perl module by > > generating a subrequest to the executable via > > lookup_uri. It is working great for GET requests. However, POST

STDIN and subrequests

2000-08-23 Thread Alex Menendez
hello, all I am currently trying to have a cgi execute in a mod_perl module by generating a subrequest to the executable via lookup_uri. It is working great for GET requests. However, POST requests are obviously failing because only the uri is being passed to the subrequest and not the main reque

Re: executing a cgi from within a handler (templating redux)

2000-08-23 Thread Alex Menendez
H, the do does seem a little inefficient. I solved this problem in the past by intiating a subrequest and changing the stack handler to cgi-script right before running the cgi. something like this: $subr = $r->lookup_uri($uri); if($r->filename =~ /\.(cgi|pl)$)/o) { $subr->handler('cgi-sc

Re: cgis and subrequests

2000-08-21 Thread Alex Menendez
nts and to cgis that only change the content type header. Just an FYI... -amen Doug MacEachern wrote: > On Mon, 21 Aug 2000, Alex Menendez wrote: > > > > > ok, what about cgi's that generate Location: headers. Am I out of luck > > here? should I contemplate changing s

Re: Passing a hash to a cgi outside a form?

2000-08-21 Thread Alex Menendez
you can't do this, dude. test.cgi dies and so do all it's pointers to structures in memory. try looking at Apache::Registry or mod_perl with the Apache::Filter mod. Or if you want to keep these things as cgi's look at LWP which lets you make http requests from within perl programs. However, I

Re: cgis and subrequests

2000-08-21 Thread Alex Menendez
ok, what about cgi's that generate Location: headers. Am I out of luck here? should I contemplate changing src for ap_run_sub_req thanx, -amen On Mon, 21 Aug 2000, Doug MacEachern wrote: > whoops. yeah, $subr->send_http_header won't work for the same reason > send_http_header() calls within

Re: cgis and subrequests

2000-08-21 Thread Alex Menendez
er perl-script PerlHandler Macromedia::AddStatImage SetHandler perl-script PerlHandler Macromedia::AddStatImage PerlSetVar is_cgi 1 any ideas? -amen On Mon, 21 Aug 2000, Doug MacEachern wrote: > On Sun, 20 Aug 2000, Alex Menendez wrote: > > > unfortunately, I am not

Re: cgis and subrequests

2000-08-20 Thread Alex Menendez
53 -0700, Alex Menendez twiddled the keys to say: > > cgi scripts. the module uses lookup_uri() to generate a subrequest then > > calls run() to output the actual contents of the file. the eagle book > > says that calling run() on a subrequest should automatically send the >

cgis and subrequests

2000-08-20 Thread Alex Menendez
Hello, all I have a module that appends a line of stats sensitive information to the bottom of html pages or cgi scripts. the module uses lookup_uri() to generate a subrequest then calls run() to output the actual contents of the file. the eagle book says that calling run() on a subrequest shou

Re: Do you use iServer?

2000-08-20 Thread Alex Shnitman
On Sat, Aug 19, 2000 at 03:22:32PM -0400, Ron Pero wrote: > Do you use mod_perl at iServer? I've used them for some time. Indeed there are some problems with their setup. What have you encountered? --Alex

new cgi mod_perl question

2000-08-16 Thread Alex Menendez
does anyone know how to get the output of a standalone cgi script from a mod_perl module I have tried all the subrequest stuff but I can't get it to work. Apache seems to parse the cgi file once a handler has been called. simply writing a handler that returns DECLINED every time it is called li

Re: canned footers

2000-08-16 Thread Alex Menendez
Your right. this works great for html! Unfortunately, however, Apache sandwich really does not work for me because it only deals with GET requests and it can not deal with cgi requests directly. I would need to alter my cgi's in order to use sandwich. I am looking for a mod_perl solution that wi

canned footers

2000-08-16 Thread Alex Menendez
hello, all I am trying to write a module that generates a canned footer for all html and cgi pages on my site. the html part is pretty easy and I have already implemented it. However, I am currently having trouble adding it to standalone cgi scripts that are not parsed by the server. I have tried

mod_perl on a FreeBSD 3.5-STABLE

2000-08-07 Thread Alex Kapranoff
Is there someone running mod_perl on a FreeBSD 3-STABLE? I just cannot accomplish it. It dies crying about some missing symbols while loading DBI.so.

Apache::RefererBlock and ModuleConfig problem?

2000-08-03 Thread Alex Darke
lflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Compile-time options: USE_LARGE_FILES Built under linux Compiled at Jul 18 2000 16:48:51 @INC: /usr/local/lib/perl5/5.6.0/i686-linux /usr/local/lib/perl5/5.6.0 /usr/local/lib/perl

Apache::ASP and Application_OnEnd

2000-08-01 Thread Alex Shnitman
e in the Apache::ASP application.) Thanks.. -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: [OT]: GPL (Was: Templating system)

2000-07-27 Thread Alex Farber
ke said modifications freely available > under the GPL also. If you don't modify it, there is no issue. That's wrong: GPL regulates software distribution only. If you modify a GPL-program for internal use, you don't have to distribute your changes. Regards Alex -- Suche eine U

Re: Templating System

2000-07-27 Thread Alex Shnitman
lar project is underway by members of the Israeli Linux Users Group, and some others: http://gamla.iglu.org.il/ (This project could use some new blood, please join the mailing list if you are interested!) -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

follow-up: very strange bug w/ tainting

2000-07-26 Thread Alex Algard
ntCheck On" ) #!/usr/bin/perl # name: crashme.pl use Test; print qq[Come on you dummy... crash me! Try harder!]; package Test; #do nothing but crash any other script that uses me (under special circumstances) 1; Alex Algard [EMAIL PROTECTED]

very strange bug w/ tainting

2000-07-26 Thread Alex Algard
; Exporter::export_ok_tags('vars'); Exporter::export_ok_tags('subs'); use OtherModule1 qw (:vars); use OtherModule2 qw (:vars :subs); use vars qw($var1 $var2); [some code that doesn't do much; certainly nothing that would raise taint errors...] Thanks, Alex Alex [EMAIL PROTECTED]

Re: my first attempt at a perl script (syntax error)

2000-07-22 Thread Alex Farber
om/toc.html or http://www.ebb.org/PickingUpPerl/pickingUpPerl.html A good place to ask is news:comp.lang.perl.misc (after you've read http://www.perl.com/pub/doc/manual/html/pod/perlfaq.html ) Regards Alex -- http://www.kawo2.rwth-aachen.de/~alex/

Re: Weird behaviour

2000-07-20 Thread Alex Shnitman
I add to it or substract > > > > from it, it's fine, but if it somehow gets back to the original value, > > > > in any way, it doesn't work again. Now it's just academic interest, because it works after all, but I'm still curious. (Please don't fool with it for several hours! ;-) Thanks again! -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: Weird behaviour

2000-07-19 Thread Alex Shnitman
uld not bind to port 80 It couldn't bind to port 80 because another web server is running there. This means that it didn't recognize the $Port setting, although printing $Port from within the config file prints 8010 properly. That's precisely the problem. -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: Weird behaviour

2000-07-18 Thread Alex Shnitman
u can think of to get the value from $port{$portname} to $Port, but I can't -- if I add to it or substract from it, it's fine, but if it somehow gets back to the original value, in any way, it doesn't work again. Does that give any new ideas as to the source of this issue? -- A

Re: Weird behaviour

2000-07-18 Thread Alex Shnitman
So, is this a real bug? Can someone confirm this? -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: Weird behaviour

2000-07-15 Thread Alex Shnitman
On Thu, Jul 13, 2000 at 09:47:59PM +, G.W. Haywood wrote: > > httpd.conf > > I see that %port is a lexical but $Port isn't. Is that a clue? I have no idea. Is it? -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: Weird behaviour

2000-07-13 Thread Alex Shnitman
Of course, I forgot to attach the httpd.conf itself. Here it is. Sorry. -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd. AccessConfig /dev/null ResourceConfig /dev/null ServerType standalone LoadModule perl_module /usr/lib/apache/1.3/mod_perl.so ServerRoo

Weird behaviour

2000-07-13 Thread Alex Shnitman
bug. If you try to reproduce it but can't, please tell me too. Maybe it's something weird with my configuration. I'm using Apache 1.3.12 and mod_perl 1.24. Thanks a lot in advance! -- Alex Shnitman <[EMAIL PROTECTED]> LiveLinx Extensible Solutions Ltd.

Re: DBD::Sybase problem

2000-06-20 Thread Alex Farber
legal time. isn't it http://perl.apache.org/guide/databases.html#The_Morning_Bug ? Regards Alex

regular cgis and mod_include and/or Apache::SSI

2000-06-07 Thread Alex Menendez
Hello, all I have a very simple problem for which I am sure (hope) there is a very simple solution. I basically want to pipe cgi output to mod_include or rather the equivalent mod_perl module, Apache::SSI. I do not want to make the cgis mod_perl modules nor Apache::Registery scripts. Just want t

Re: Where can I find MOD_PERL for win32 ?

2000-06-04 Thread Alex Farber
Walter Hissink wrote: > I am looking for the MOD_PERL module for Win32 systems. The link to the ftp > provided on the apache.org website doesn't seem to contain the file in ftp://theoryx5.uwinnipeg.ca/pub/other/ or http://www.robert.cz/misc/

installation of GTop and Scoreboard

2000-05-31 Thread Alex Algard
kers and I would certainly appreciate it! Thank you, Alex Algard [EMAIL PROTECTED] - OUTPUT FROM GTop.pm - [root]# perl Makefile.PL Note (probably harmless): No library found for -lgtop Note (probably harmless): No library found for -lgtop_sysdeps Note (probably harmless): No library

RE: installation of GTop and Scoreboard

2000-05-30 Thread Alex Algard
Thanks, but installing glibtop only solved the GTop.pm issue. We're still having the same problem with Scoreboard.pm. Below is the output from the Scoreboard.pm installation process. Alex Algard [EMAIL PROTECTED] [root]# perl Makefile.PL Writing Makefile for Apache::DummyScoreboard Wr

installation of GTop and Scoreboard

2000-05-30 Thread Alex Algard
kers and I would certainly appreciate it! Thank you, Alex Algard [EMAIL PROTECTED] - OUTPUT FROM GTop.pm - [root]# perl Makefile.PL Note (probably harmless): No library found for -lgtop Note (probably harmless): No library found for -lgtop_sysdeps Note (probably harmless): No library

Re: [OT] Great book!

2000-05-14 Thread Alex Farber
Clayton Cottingham aka DrFrog wrote: > another great one ive yet to purchase is object oriented perl > there is some sample chapters > online somewhere http://www.effectiveperl.com/toc.html > > "Effective Perl Programming" by Hall w/ Schwartz. /Alex

Re: [TOOT]: Dyslectics untie!

2000-05-14 Thread Alex Farber
the link we consider the email address > valid and he/she can use the service. Maybe this will be useful: http://public.yahoo.com/~jfriedl/regex/code.html and Email::Find from http://athens.arena-i.com/~schwern/src/ /Alex

Re: Cookies and redirection

2000-05-09 Thread Alex Menendez
not completely sure about real mod_perl. However, the following works great using Apache::Registry and CGI: print $query->header(-cookie=>[$id_cookie,$crypt_cookie], -Location=>$query->param("redirect").'?name='.@$ref[1].'&last_login='.@$ref[3].'&site_id='.$query-> param('site_id')); I think A

error in Apache::Util

2000-04-28 Thread Alex Krohn
p_header("text/html"); use Apache::Util (); print Apache::Util::escape_html(""); } When I go to /test I get internal server error, and this in the logs: [Fri Apr 28 12:59:57 2000] [error] Can't locate loadable object for module Apache::Util in @INC (@INC contains:

Apache::VMonitor not loading..

2000-04-26 Thread Alex Krohn
Hi! I'm trying to get Apache::VMonitor to load on a new mod_perl 1.23/Apache 1.3.12/perl 5.005_03 installation. mod_perl is up and running fine, however I can't get Apache::VMonitor working. If I add use Apache::VMonitor; to my startup file, I can't start httpd, I g

RE: Apache::ASP

2000-02-04 Thread Alex Schmelkin
from ChiliSoft). Hope this help, Alex > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of David Vaught-Alexander > Sent: Friday, February 04, 2000 5:29 AM > To: [EMAIL PROTECTED] > Subject: Apache::ASP > > > Okay, I'm new to

RE: XML applications in mod_perl/apache xml project

2000-02-02 Thread Alex Schmelkin
easily recreatable in a mod_perl context, and I'm wondering if anyone has attempted it and what are some possible pointers/pitfalls/advice to consider. Thanks, Alex > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Joshua Chamas &

XML applications in mod_perl/apache xml project

2000-02-02 Thread Alex Schmelkin
r features of Cocoon, etc. are only available in java (hence the "Cocoon is a 100% pure Java publishing" tag line :). Thanks for your time and advice Thanks, Alex Alex Schmelkin [EMAIL PROTECTED]

Re: installing ApacheDBI..

2000-01-05 Thread Alex Krohn
ed--compilation aborted at startup.pl line 9. hits:~/batch# So I thought the problem was with Apache::DBI. Of course, the problem was somewhere else, and once that was fixed, apache started up (even though perl -c gave the same error). Perhaps it would be worthwhile making Apache::DBI compile ok when not run under mod_perl? Cheers, Alex

Re: make problems on BSDI 4.01

1999-12-28 Thread Alex Krohn
ror message you mentioned will be generated when any > function in libperl.so or any function *referenced* by a function in > libperl.so fails to load. I added this and it worked perfectly! Do I need to keep this in, or should I expect any suprises with mod_perl later? =) Thanks! Alex

make problems on BSDI 4.01

1999-12-28 Thread Alex Krohn
ibdata/perl5 /usr/libdata/perl5/site_perl/i386-bsdos /usr/libdata/perl5/site_perl /usr/libdata/perl5/site_perl/i386-bsdos/include which is exactly like the original poster. Is there any workaround besides installing a new version of perl? Thanks for any help! Alex

Parent Process Memory Space

1999-12-13 Thread Alex Menendez
Hello, All I currently have a caching module for dynamic pages that is loaded up upon server startup. However, when each child process uses this module they each create a copy of the modules caching hash. I would like to have 1 copy of the caching hash in the parent process that each child ca

DBI Performance with Multiple IDs

1999-12-09 Thread Alex Menendez
hello, all Given the following situation what is more efficient: -I have 10 id numbers I want to query on numbers 1,2,3,4,5,6,7,8,9,10 respectively. However, this list is not fixed and could be any number of ids up to 20. -Is it faster to create a global variable with a prepared sql statement a

Re: simple xml parsing within html

1999-12-09 Thread Alex Menendez
yes, bill I am actually doing the same thing! however, I still would like a pre-cached transaction to run faster for those pages that are truly dynamic and can never really be cached effectively. -amen Bill Moseley wrote: > At 08:47 PM 12/8/99 -0800, Alex Menendez wrote: > >I initia

simple xml parsing within html

1999-12-08 Thread Alex Menendez
hello, all I currently have developed a dynamic content engine in mod_perl that parses html files on the fly for proprietary xml tags then replaces these tag trees with db content. I initially tried to do this by subclassing HTML::Parser and over-riding the usual methods. However, this was painf

Simple Mod_Perl XML Engine

1999-11-22 Thread Alex Menendez
hello, all I am currently developing a simple mod_perl xml engine that replaces proprietary xml packets embedded in a web page with db content...no formatting just simple text. I have just started and do not want to re-invent the wheel if a good package exists out there. My initial plan was to l

CGI.pm not maintaing values..

1999-11-06 Thread Alex Krohn
nt "Init Value: ", $in->param('val'), "\n"; &foobar($in); sub foobar { my $in = shift; print "Sub Value: ", $in->param('val'), "\n"; } # ---

  1   2   >