mod_perl and GD.pm segfault

2003-09-03 Thread Jason
Embedded Perl version v5.8.0 for Apache/1.3.27 (Unix) PHP/4.3.2 mod_perl/1.28 mod_ssl/2.8.14 OpenSSL/0.9.6b I am trying to use a simple script that will display an jpeg or png image using GD.pm (readily available from CPAN) I am getting [Wed Sep 3 10:41:37 2003] [notice] child pid 832 exit

authentication realms in http and https

2003-07-18 Thread Jason Fong
that can be changed through configuration options? (and also... is my analysis even correct? :) ) Thanks! -Jason Fong

How do I have a PerlAuthenHandler not popup the login box?

2003-07-17 Thread Jason Fong
I'm making a login system that uses a web form instead of the browser's popup box to input the username/password. My problem is that when I use my authentication script as a PerlAuthenHandler in the .htaccess, it insists on having the browser show the popup username/password box. I tried making

Re: Apache::Cookie

2003-06-03 Thread Jason Galea
Have you consulted the documentation? http://search.cpan.org/author/JIMW/libapreq-1.1/Cookie/Cookie.pm#value cap wrote: i have an application that uses CGI and sets the cookie values as a hashref. im then attempting to retreive the values with Apache::Cookie with: $cookies =

Re: cookie setting/retieval

2003-04-01 Thread Jason Jolly
202, TheFile line 28. I'm sure I'm going about something wrong, but I seem to have hit a roadblock.do I need to write my own handler for this? thnx, ~j - Original Message - From: Enrico Sorcinelli [EMAIL PROTECTED] To: Jason Jolly [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

cookie setting/retieval

2003-03-31 Thread Jason Jolly
I'm currently in the process of writing a wrapper for a site using Apache::Session and mod_perl. I was having great success using the following code to either validate a cookie which was already present or set a new cookie if necessary: my $r = Apache-request; my $cookie =

Addition of directory to @INC variable via startup script/mod_perl

2003-03-24 Thread Jason Jolly
I currently have the following configuration in my httpd.conf file: PerlRequire /usr/local/apache/conf/startup.pl Alias /perl/ /usr/local/apache/cgi-bin PerlTaintCheck On PerlWarn On PerlFreshRestart On PerlTransHandler Apache::SessionManager PerlFreshRestart On Location /perl

Re: [mp2] changing http:// to https: in TransHandler

2003-03-08 Thread Jason Galea
sorry if OT.. Hi Nick, please tell me I'm wrong (I'll be a happy camper), but I thought that you couldn't use name virtual server for SSL. Name server requires HTTP/1.1 which supplies a Host header so the server can tell which virtual server you want. With SSL this header is encrypted so

Re: mysql question

2003-01-23 Thread Jason Galea
you better duck dude. slightly is slightly understating the off-topicness of your post.. Martin Moss wrote: slightly off topic, but is it possible to grant permissions to a user on multiple tables in one sql statement in mysql? From mysql.com:- GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP

Re: Apache 2?

2002-11-30 Thread Jason Czerak (Jasnik)
. -- Jason These days, Apache 2 has become the default version of Apache. On my site, I run a front end Apache and a back end Apache. Front end: Apache 1.x, has mod_accel module which is like mod_proxy, but downloads all the data from the backend ASAP and frees it up immediately, so

win32 mod_perl 1 and perl 5.8

2002-11-05 Thread Jason Nicholls
. The page above doesn't actually explain why but I'm assuming it's because of threading issues with Perl 5.6? Does anyone know if mod_perl for win32 will be updated to work with Perl 5.8 and whether this will fix the single threaded problem mentioned above? Thanks, Jason Nicholls

Re: mod_perl2: apache.pm vs apache2.pm (CGI.pm)

2002-11-01 Thread Jason Czerak
deal with the extra overhead, and with time Everything will be mod_perl2.0 aware. DBI.pm, CGI.pm, and Text::Templates would be great if they were to port them to work on mod_perl2 ASAP :) -- Jason Czerak I've mod_perl running on several machines (apache 1.x) Today I installed a new system

Re: Dynamlcally loading modules at run-time

2002-10-03 Thread Jason Galea
Hi Jochen, I'd recommend having a read of this http://perl.apache.org/docs/1.0/guide/performance.html#Sharing_Memory Not sure how much it applies to your situation, but basically, unless the different modules are very large and rarely used you really want to load them all at server startup.

Dual Apache setups

2002-09-08 Thread Jason Czerak
and mod_rewrite and all other unnecessary modules not compiled in. and for dynamic requests, it proxys them to the back end as suggested by the mod_perl guide, very please with this performance and memory usage. Was wondering what is the statues of such a configuration with apache 2.x.x. -- Jason Czerak

Re: PerlChildInitHandler doesn't work inside VirtualHost?

2002-08-10 Thread Jason W. May
VirtualHost conf sections inside separate Include config files so that I can leave the main httpd.conf fairly static. If ChildInitHandler is not allowed inside VirtualHost, it should generate an exception when the config file is parsed. Instead, it silently ignores the declaration. -Jason Cees

PerlChildInitHandler doesn't work inside VirtualHost?

2002-08-08 Thread Jason W May
... /VirtualHost but this doesn't: VirtualHost *:80 PerlModule Foo PerlChildInitHandlerFoo::handler ... PerlHandler MyModule /VirtualHost I don't see why VirtualHost would make a difference for child-init handlers. What else could I be doing wrong? Thanks, -Jason

Understanding why this fixes my perlaccess script

2002-07-04 Thread Jason Wilkes
Hi folks, I use the following modperl script to control page access, based on a sessionid held in a cookie. A database is queried to get the user id from the db based on the cookie value. (No cookie, and your bounced to the logon screen). So far so good, and all works well. Except for one user

RE: Understanding why this fixes my perlaccess script

2002-07-04 Thread Jason Wilkes
-bind_param( 1, $SessionID ); $sth-execute; That might help. -Original Message- From: Jason Wilkes [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 11:46 AM To: [EMAIL PROTECTED] Subject: Understanding why this fixes my perlaccess script Hi folks

Re: Memory Leaks

2002-05-20 Thread Jason
If you don't want to restart the server then don't do this instead, it should help prevent small leaks from being a problem. http://httpd.apache.org/docs-2.0/mod/mpm_common.html#maxrequestsperchild - Original Message - From: Per Einar Ellefsen [EMAIL PROTECTED] To: Gregory

Re: Moving from CGI to mod_perl

2002-05-14 Thread Jason
Probably the BIGGEST mod_perl pitfall is variable scoping/initialization. I recommend that you try to use strict; whenever possible ESPECIALLY in mod_perl. - Original Message - From: Anton Permyakov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 14, 2002 12:15 AM

Re: Can mod_perl help me use ENV variables in httpd.conf?

2002-05-05 Thread Jason Woodward
be able to see what is available in %ENV when running under mod_perl. See also Chapter 9, page 498 of the Eagle. jason Ken Williams wrote: On Wednesday, May 1, 2002, at 05:04 AM, Fran Fabrizio wrote: I spoke too soon. I need: Perl push Alias, [ qw(/cgi-bin/chimpkit/ $ENV{SERVER_ROOT}/cgi

Re: mod_perl Basic Authentication problem using PerlAuthenHandler

2002-04-18 Thread Jason
Thank you... cant believe I missed that... was to excited about the ability to do my own auth program I added allow from x.x.x.x and it worked great Thank you. - Original Message - From: Geoffrey Young [EMAIL PROTECTED] To: Jason [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

mod_perl Basic Authentication problem using PerlAuthenHandler

2002-04-17 Thread Jason
In httpd.conf i have Location /~jter PerlAccessHandler ApacheAuthentication PerlSetVar Intranet 65.103.229.188 = joe, 10.10.10.2 = userB PerlAuthenHandler ApacheAuthentication AuthName realm AuthType Basic Require valid-user Order deny,allow

Re: Weird mod_perl CGI.pm interaction (Bug?)

2002-02-10 Thread Jason Czerak
wishes to know. -- Jason Czerak On Fri, 8 Feb 2002 17:02:20 + (GMT), Ged Haywood wrote: My message is about data space. The data space for the modules does not seem to be recreated or reinitialized (BEGIN blocks are not rerun) from one invocation of a script to another. Yes

Re: mod_perl, OpenPGP Math::Pari - Solved

2002-02-07 Thread Jason Galea
everything was good again... 8) J Jason Galea wrote: Ged Haywood wrote: There's a file in the mod_perl directory called SUPPORT. (That bit about 'perl -V' was taken from there. :) SUPPORT contains detailed instructions about what to do when mod_perl crashes, including what information

Re: weird problem. Lost of the POST data (SOLUTION)

2002-02-07 Thread Jason Czerak
. -- Jason Czerak

Re: Weird mod_perl CGI.pm interaction (Bug?)

2002-02-07 Thread Jason Czerak
in the mod_perl Guide? http://perl.apache.org/guide 73, Ged. As I mentioned ealier today. I asked the question. 'do you have threaded support compiled into perl?'. If you do, this was the solution I needed to fix the same problem that I have been having also. -- Jason Czerak

Re: mod_perl, OpenPGP Math::Pari

2002-02-05 Thread Jason Galea
[snip] perl -V That's lower case perl, upper case V. [snip] now that's funny! ok, so I was babbling.. try this. A simple perl script useing Crypt::OpenPGP runs fine from the command line while the same subroutine used in a mod_perl module on the same machine crashes. Why? Its

Re: mod_perl, OpenPGP Math::Pari

2002-02-05 Thread Jason Galea
Ged Haywood wrote: There's a file in the mod_perl directory called SUPPORT. (That bit about 'perl -V' was taken from there. :) SUPPORT contains detailed instructions about what to do when mod_perl crashes, including what information to provide and how to generate a stack backtrace.

mod_perl, OpenPGP Math::Pari

2002-02-04 Thread Jason Galea
OK, this has got me stumped.. so it just has to be something obvious.. I am attemting to use Crypt::OpenPGP to encrypt some data. To do this I need to generate some keys.. (ok that's all obvious too..get to the point, J) On my development server everything runs fine producing useable public

Re: Fast template system. Ideas,theorys and tools

2002-01-03 Thread Jason Czerak
that through in a second because of parallel execution. What do you suggest as a good benchmark tool to use that would be 'smart' when testing a whole complete site. -- Jason Czerak

Re: Fast template system. Ideas,theorys and tools

2002-01-01 Thread Jason Czerak
is interested right now in the development of it. Give me a ring. I'll be glad to get some help with it. (expecially with fedex, ups shipping calcs :) ) If anyone would like to see a working site using the cart that I am working on. It's over at http://www2.test.jasnik.net. -- Jason Czerak

Apache::Filter Help Please!!

2001-12-07 Thread Jason Hall
Please see if you notice anything glaringly wrong in what I'm doing. Basically my problem is that my filter isn't passing data along, eg what I print in filter1 isn't getting output, even though filter2 get's the filehandle and loops over it. My setup is pretty akin to what the docs offer in

Re: Apache::Filter Help Please!!

2001-12-07 Thread Jason Hall
ok, that make sense, so I modified my filter1 to just register the filter, print out some text, and return ok, that's it. and it still doesn't print anything if filter2 comes after it? Does that sound wrong to anybody but me? On Friday 07 December 2001 12:47 pm, you wrote: I tried out your

Re: Apache::Filter Help Please!!

2001-12-07 Thread Jason Hall
for your help, definately made the difference On Friday 07 December 2001 01:10 pm, you wrote: Jason Hall wrote: ok, that make sense, so I modified my filter1 to just register the filter, print out some text, and return ok, that's it. and it still doesn't print anything if filter2 comes after

Re: Apache::MP3::Skin and PerlSetVar

2001-11-28 Thread Jason Galea
Patrick Buckingham wrote: I just install Apache::MP3 and it works fine but if I try to use ::Skin I get these messages for PerlSetVar PerlSetvar takes two arguments Perl config var and value This does this with ::Sortlist also. But with the straight MP3 modules I can use PerlSetVar

Re: Programmer Wanted

2001-10-12 Thread Jason Boxman
On Friday 12 October 2001 01:43 pm, you wrote: Hello, Another make-money-fast site? *sigh* I don't know what' scarier, that you have 400,000 'people' who've bought into it or that you expect two million more. snip James Ventrillo [EMAIL PROTECTED] FREE Website FREE Advertising FREE

Apache::Scoreboard

2001-10-12 Thread Jason Boxman
It's borked on my box somehow. Even though I have multiple servers running, I only get results for the parent process and only partial information at that. It also prevents Apache::VMonitor from returning any useful information about my running Apache processes. [Fri Oct 12 15:52:22 2001]

Apache VMonitor

2001-10-09 Thread Jason Boxman
is a sweet module I'd let to get working fully. Thanks! -Jason

Re: Apache VMonitor

2001-10-09 Thread Jason Boxman
On Tuesday 09 October 2001 06:08 am, you wrote: Jason Boxman wrote: Hey all! snip Jason, Since you've already tried to look at the code and play with it, it's not a VMonitor's issue, but the Scoreboard's one. I'm running all the latest -dev versions of modperl/apache and it works for me

Apache::DBI fails to load

2001-10-01 Thread Jason Shaw
; /snip Any possible hints/clues will be greatly appreciated! Thank you, -jason shaw. http://www.hcst.com

ANANNOUNCE: Apache-AuthenCache-0.05

2001-08-18 Thread Jason Bodnar
: [EMAIL PROTECTED]- Date: Sun, 19 Aug 2001 02:32:16 +0200 From: PAUSE [EMAIL PROTECTED] To: Jason Bodnar [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: CPAN Upload: J/JB/JBODNAR/Apache-AuthenCache-0.05.tar.gz The uploaded file Apache-AuthenCache-0.05.tar.gz has entered CPAN as file: $CPAN

Newbie question

2001-07-12 Thread Jason
it must be tricky? Jason

Installation woes :)

2001-06-10 Thread Jason
? thanks for any advise :) Jason

RE: Still not talking!

2001-05-21 Thread Jason Bodnar
can't connect? I'm not sure yet. Still thinking ... -- Jason Bodnar [EMAIL PROTECTED]

Re[2]: NameWithVirtualHost

2001-05-20 Thread Jason J. Czerak
On Thu, 17 May 2001 08:04:31 -0400 Geoffrey Young Geoffrey Young [EMAIL PROTECTED] wrote: -Original Message- From: Jason Czerak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 16, 2001 3:18 PM To: [EMAIL PROTECTED] Subject: NameWithVirtualHost [snip

NameWithVirtualHost

2001-05-16 Thread Jason Czerak
spaces. -- Jason J. Czerak ([EMAIL PROTECTED]) Linux Systems Evangelist Jasnik Services, LLC http://www.Jasnik.net

looking for a functin to move %fdat to the symbol table..

2001-05-10 Thread jason n perkins
posted to the wrong list. i did cross post to the embperl list, to cover all of the bases. :: jason n perkins :: email - [EMAIL PROTECTED] :: web - www.somebodydial911.com

mod_perl and infinite loops

2001-04-25 Thread Jason Terry
I have a rather large script I run through mod_perl and occasionally, I have notice some users with stuck processes. It seems like they are in some sort of infinite loop. The CPU that the child is using is high, and the memory gradually grows until my server would eventually start to

New Install Perl 5.6.1- mod_perl not findind mods

2001-04-19 Thread Jason Leidigh
new perl binary...do I have to recompile mod_perl/Apache Jason Z. LeidighProject LeaderUOL InternacionalAv.Libertador 1068 - Piso 3Capital Federal - ( C1112ABN )Buenos Aires - ArgentinaT.E: 0054-11-5777-2446Fax: 0054-11-5777-2402www.uol.com.ar[EMAIL PROTECTED]

Memory Leaks?

2001-03-15 Thread Jason Leidigh
site with the amount of traffic we have that is death Thanks in advance! Jason Z. LeidighProject LeaderUOL InternacionalAv.Libertador 1068 - Piso 3Capital Federal - ( C1112ABN )Buenos Aires - ArgentinaT.E: 0054-11-5777-2446Fax: 0054-11-5777-2402www.uol.com.ar[EMAIL PROTECTED]

Apache thrashing my swap...

2001-02-28 Thread Jason Terry
is probably the most likely to have other people who have exactly this issue on their machines Thanks in advance -Jason

Re: Subject: mod_perl failing to interpret bytecode modules

2001-02-09 Thread Jason Leidigh
erl.com/, the Perl Home Page.Have fun :-)Tobias I hope that you, I or someone will find the key because I am (as I'm sure you are) very anxious to have this solution in placegood luck! Jason Z. LeidighProject LeaderUOL InternacionalAv.Libertador 1068 - Piso 3Capital Federal -

Re: Perl Sections, NameVirtualHost, and Aliases

2001-02-07 Thread Jason Terry
I use this code to pull my domains from a VERY simple mySQL db - Original Message - From: "G.W. Haywood" [EMAIL PROTECTED] To: "Veatch, David W" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 10:04 AM Subject: Re: Perl Sections, NameVirtualHost, and Aliases

Reading email with mod_perl

2001-02-07 Thread Jason Terry
Does anybody have an information on how to read a MIME encoded email attachment with mod_perl?

Transfering Headers... w/ miltiple 'Set_Cookie'

2000-12-21 Thread Jason Leidigh
thisI tried: $r-headers_out-add('Set-Cookie' = $cookieString); Inside a loop which modifies $cookieString each time through but it had the same effect. In the end Apache sens you a single cookie which is equivelent to the last set. Thanks in advance...... Jason PS I am sti

RE: Response time of a perl script!!!

2000-12-05 Thread Jason Liu
In this situation, I think the bottle neck is establishing connection with the database. Apache::DBI helps to maintain persistent database connection. That's why the latter test is 20 times faster. Jason Hi folks, I ran a same perl script twice. First time only under mod_perl

RE: Problem with Apache::DBI under mod_perl!!

2000-11-27 Thread Jason Liu
I had some similar problem before. It was caused by the "PerlFreshRestart on". Comment this line out and see what happens. Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Edmar Edilton da Silva Sent: Thursday, November 23, 20

RE: dynamic vs. mostly static data

2000-11-10 Thread Jason Liu
Is a package global var, such as %CACHE in the code below, persistent during the life of a child process? Does each child get a copy of %CACHE after the parent forks? Thanks, Jason i often do something like this where i allow each individual child process to cache it's data. i do something

RE: database access

2000-11-07 Thread Jason Liu
Is Apache::DBI absolutely necessary if you want to establish persistent database connection per child? Thanks, Jason -Original Message- From: David Hodgkinson [mailto:[EMAIL PROTECTED]] Sent: Monday, November 06, 2000 5:10 AM To: Jason Liu Cc: [EMAIL PROTECTED] Subject: Re

RE: database access

2000-11-07 Thread Jason Liu
Thank you for the help everyone. Jason

database access

2000-11-06 Thread Jason Liu
Hi, I can access oracle database from the main Apache process, but not from any child processes. I am fairly new to this subject, can someone give me some advice? Thanks in advance, Jason

RE: database access

2000-11-06 Thread Jason Liu
"Undefined subroutine dbChannel::command called at /usr/up/papi/lib/PAPIDatabase.pm", which is a library file that works. In general, how should database connections be handled between parent and child processes? Can you establish database connections from within a handler? Jason

RE: An idea, for comments

2000-10-27 Thread Jason Bodnar
irreplaceable, if you can't be replaced, you can't be promoted. -- Jason Bodnar [EMAIL PROTECTED]

ANNOUNCE:: Apache::ProxyStuff-0.10

2000-10-21 Thread Jason Bodnar
]- Date: Sat, 21 Oct 2000 08:16:54 +0200 From: PAUSE [EMAIL PROTECTED] To: Jason Bodnar [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: CPAN Upload: J/JB/JBODNAR/Apache-ProxyStuff-0.10.tar.gz The uploaded file Apache-ProxyStuff-0.10.tar.gz has entered CPAN as file: $CPAN/authors/id/J/JB

simple cookie authorization?

2000-10-21 Thread Jason Bodnar
Is there a module for simple cookie authorization? I want to grant access if the user has a cookie set. I don't care about the value of the cookie. I looked at Apache::AuthCookie and it looks overly complex for my needs. -- Jason Bodnar [EMAIL PROTECTED]

How to use gcc to build mod_perl

2000-10-20 Thread Jason Liu
Hi, I was trying to build mod_perl 1.24_01 and apache 1.3.14. I used the following command: perl Makefile.PL make test make install The Makefile wants to use the "cc" compiler. Can I use "gcc" instead? Thanks, Jason

ANNOUNCE: Apache::ProxyStuff 0.09

2000-10-19 Thread Jason Bodnar
-FW: [EMAIL PROTECTED]- Date: Thu, 19 Oct 2000 18:06:13 +0200 From: PAUSE [EMAIL PROTECTED] To: Jason Bodnar [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: CPAN Upload: J/JB/JBODNAR/Apache-ProxyStuff-0.09.tar.gz The uploaded file Apache-ProxyStuff-0.09.tar.gz has entered CPAN

newbie needin help

2000-10-14 Thread jason
the "/programs" URL # pull in things we will use in most requests so it is read and compiled # exactly once use CGI (); CGI-compile(':all'); use CGI::Carp (); use DBI (); use DBD::mysql (); 1; and is this it? do I have to modify my webftp.cgi program in any way? regards, Jason

ANNOUNCE: Apache::ProxyStuff 0.08

2000-10-12 Thread Jason Bodnar
This version fixes a typo in the Pod documentation spotted by Christian Gilmore. The typo was causing problems installing the module. -FW: [EMAIL PROTECTED]- Date: Thu, 12 Oct 2000 18:44:21 +0200 From: PAUSE [EMAIL PROTECTED] To: Jason Bodnar [EMAIL PROTECTED], [EMAIL PROTECTED

RE: How tp Prevent This

2000-10-09 Thread Jason Bodnar
///|||---|||\\\ \\\---|||---/// __ Do You Yahoo!? Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free! http://photos.yahoo.com/ -- Jason Bodnar [EMAIL PROTECTED]

Do I need to reinstall mod_perl?

2000-09-15 Thread Jason
info. Also, if you remember, I was the idiot who was having problems with my httpd.conf -- the reason I was having trouble was that some of my config info is also stored in a file called access.conf -- I guess some systems use one httpd.conf, while others use more than one.. Thanks! Jason

Still having problems with mod_perl and Apache::ASP

2000-09-14 Thread Jason
virtual hosts -- do I need to put the information there or what?? Sorry for being a pain, Jason P.S. Thanks for all the help so far!

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
, 2000 3:12 PM To: Jason Ables; Jerrad Pierce Cc: [EMAIL PROTECTED] Subject: RE: How can I tell if Apache::ASP is available? Yes. --begin hello.asp %= "Hello World" % --end hello.asp -Original Message----- From: Jason [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 13, 20

Question on installation and location of httd.conf file.

2000-09-12 Thread Jason
isn't installed?? I'm really confused. Can anyone help me? Also, is there a way to test that Apache::ASP and mod_perl are correctly installed and can run scripts? Your help is very much appreciated. -- Jason Ables

PUT handling (somewhat off-topic)

2000-09-06 Thread Mark-Jason Dominus
I apologize in advance, because this isn't directly related to mod_perl. But I really wasn't sure where to ask. Posting to comp.infosystems.www.servers.unix didn't produce any result. There doesn't seem to be a mailing list for discussion of Apache generally. I am trying to get apache to

Re: PUT handling (somewhat off-topic)

2000-09-06 Thread Mark-Jason Dominus
If it hadn't worked, I probably would've trussed Apache while I made the request to see what was going on. I guess I'll try that, but I'm not expecting much. That was the right thing to do. The problem became apparent right away: I had another handler installed for a parent directory of

Re: PUT handling (somewhat off-topic)

2000-09-06 Thread Mark-Jason Dominus
It worked like a charm, the first time, Apparently it works like a charm for everyone but me, since none of the instructions I've found on the net have admitted the possibility that anything can go wrong. Which is why I came here, to bother the experts. If it hadn't worked, I probably

RE: Help Embperl

2000-08-05 Thread Jason Bodnar
? Running embpexec.pl works fine on the same file I am running through apache. Thanks, Jeff -- Jason Bodnar [EMAIL PROTECTED]

RE: ORA conference

2000-07-17 Thread Jason Bodnar
/tpc4/dsc_4552.html hey that didn't take long. nice evening of hanging with mod_perl buddies. in fact i just left everybody at the pub, buncha lushes. cutely enough, when i started netscape on this terminal, it was set up for jason bodnar's roaming profile.. someone we /didn't/ see last

RE: ORA conference

2000-07-14 Thread Jason Bodnar
town around 6pm-ish. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Vivek Khera, Ph.D.Khera Communications, Inc. Internet: [EMAIL PROTECTED] Rockville, MD +1-301-545-6996 GPG MIME spoken herehttp://www.khera.org/~vivek/ -- Jason Bodnar [EMAIL PROTECTED]

Re: Idea of an apache module

2000-07-12 Thread Jason Bodnar
server. Exactly. When people start talking about Apache vs Netscape vs IIS and don't even think about other variables point them to this article: http://cs.alfred.edu/~lansdoct/mstest.html Unless you're yahoo or aol or ebay web server performance isn't going to be your bottleneck. -- Jason

Apache::Leak ouput

2000-06-25 Thread Jason Nugent
in error_log for results so I was wondering if anyone in here had suggestions. thanks, most appreciated. Jason

Re: DNS Lookups ? huh ?

2000-06-09 Thread Jason Terry
I do use an allow/deny with a domain name. My question is, does it only force the lookup for the directory that the rule applies to. Or, does simply having the rule force lookups on ALL pages? Thanks for the help -Jason - Original Message - From: "Marc Slemko" [EMAIL

Re: [benchmark] DBI/preload (was Re: [RFC] improving memory mapping thru code exercising)

2000-06-06 Thread Jason Terry
, or other CPAN modules, benefit from including directly in the startup script... as opposed to being loaded only in the pre-loaded scripts themselves? Again, thank you for this thread it has saved me 20-80M of RAM depending on my current load. -Jason - Original Message - From: "

RE: logging bytes served

2000-06-01 Thread Jason Bodnar
/ -- Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems I'm sick of eating hoagies! I want a grinder, a sub, a foot-long hero! I want to live, Marge! Won't you let me live? Won't you, please? -- Homer Simpson Fear of Flying

Forms.

2000-05-29 Thread Jason C. Leach
hi, I am interested in knowing the best way to generate forms w/ mod_perl. At the moment I use CGI.pm in combination w/ mod_perl. But I am not sure I am using it correctly or if it's the best way. Perhaps I should just use a HTML::Template? Here is a bit of the output code from my prg:

Re: High-volume mod_perl based ecommerce sites?

2000-05-25 Thread Jason Bodnar
(Tom's OO Tutorial). I've heard alot of good things about Damian Conway's OO Perl book but I haven't read it myself. The advanced perl programming book has a nice section on OO. But, learning OO in a Java or C++ context would probably be the best way to start. -- Jason Bodnar + Tivoli Systems

Re: Want to work at a Game company?

2000-05-18 Thread Jason Bodnar
end resume and salary requirements to: Origin Systems-Human Resources, 5918 W. Courtyard Drive, Austin, TX 78730 or fax to 512-346-7905 or email [EMAIL PROTECTED] No phone calls please. We are an equal Opportunity Employer. -- Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems Lisa: Rem

Re: Most nonesense I've ever read about mod_perl

2000-05-06 Thread Jason C. Leach
hi, There be truth to the reply. You can write all the C or ASM you like, but your algorithm is where it will count. Anyone who knows how to do BIG-O will know this. A good perl programmer will code a bad C programmer under the table with speed and eficiency. j. -- Method Digital Logic

mod_perl of FreeBSD 4

2000-05-04 Thread Jason C. Leach
hi, I have freebsd 4, and am going to install mod_perl on it. If I go to /usr/ports/www/mod_perl and do a make, I get v1.21. But if I go to the ftp site it has up to v1.23. Can I change the ports, or update them to get the latest files? j. -- Method Digital Logic Company

Templates.

2000-05-03 Thread Jason C. Leach
hi, I'm looking for some good ideas on developing web sites w/ mod_perl. One think we were looking at was to write template HTML pages, and run them through a perl prg to replace home made tags w/ data. Another was to write an apache mod that will contain/load the HTML on the first hit and

Fw: Apache::Registry error message?

2000-04-17 Thread Jason Terry
quotes around text) to my pre-loaded mod_perl cgi script. Perhaps apache::registry is having difficulty rebuilding my scripts when I make changes? - Original Message - From: "Jason Terry" [EMAIL PROTECTED] To: "Doug MacEachern" [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent:

Re: Modperl/Apache deficiencies... Memory usage.

2000-04-17 Thread Jason Simms
es the specified key = value pair from a hash, but cannot be used to delete "regular" variables, such as a plain scalar. For those, or for an entire hash, you should use undef(). Jason Simms __ Get Your Private, Free Email at http://www.hotmail.com

RE: Remote URL

2000-04-14 Thread Jason Bodnar
it. Admittedly, I'm new to this environment but I just getting killed. Very easy thing to do in ASP but I want to use Perl and Apache and Linux. Somebody has to have done this. Paul -- Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems Mr. Scorpio says productivity is up 2% and it's all because of my

Re: Remote URL

2000-04-14 Thread Jason Simms
ou already. Perhaps if you posted your code in the most simple form in which it is failing, we can help. Jason Simms __ Get Your Private, Free Email at http://www.hotmail.com

SOLVED: Segfault with Embperl, Apache::Session (piece of %@#!*)

2000-04-14 Thread Jason Bodnar
EMBPERL_SESSION_ARGS. Or maybe I should just get off my butt and make a patch. -- Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems Homer: We always have one good kid and one lousy kid. Why can't both our kids be good? Marge: We have three kids, Homer. Separate Vacations

RE: Segfault with Embperl, Apache::Session

2000-04-13 Thread Jason Bodnar
as DSO? If the second, than upgrade to mod_perl 1.22 If you tell me what to do I'll try to get a stack backtrace. mod_perl is staticly linked. -- Jason Bodnar + [EMAIL PROTECTED] + Tivoli Systems Second class? What about Social Security, bus discounts, Medic-Alert jewelery, Gold Bond powder, pants

Re: Segfault with Embperl, Apache::Session

2000-04-13 Thread Jason Bodnar
. Mark Jason Bodnar wrote: Trying to use Apache::Session with Embperl 1.2.1, mod_perl 1.21, Apache 1.3.9. I've got this running on another machine just fine with the exact same setup (I think). I created a db called sessions with a table called sessions: mysql show fields from sessions

Re: Segfault with Embperl, Apache::Session

2000-04-13 Thread Jason Bodnar
The binaries on both boxes are the same. They get rdist'd out from one machine every night. I'm going to rebuild the latest versions of everything on the 2.7 machine tomorrow and see if that makes a difference. At 10:57 PM 4/13/00 -0400, Mark Imbriaco wrote: On Thu, 13 Apr 2000, Jason Bodnar

  1   2   >