Re: Problem configuring and making mod_perl

2003-07-16 Thread C. Jon Larsen
`/tmp/builldinstall/apache_1.3.27' make[1]: *** [build] Error 2 make[1]: Leaving directory `/tmp/builldinstall/apache_1.3.27' make: *** [apaci_httpd] Error 2 -- + Jon Larsen: Chief Technology Officer, Richweb, Inc. + Richweb.com: Providing Internet-Based Business Solutions since 1995 + GnuPG

Re: Re-installing 1.99_08 binary or 1.99_05 RPM in Red Hat 8 [mp2]

2003-02-05 Thread Jon
(Just an informational post to round off the thread.) The following worked for me, I now have a working mod_perl 1.99! At 15:08 15/01/2003 +0100, Jérôme Augé wrote: To compile mod_perl-1.99_xx on RedHat 8.0 I used : $ perl Makefile.PL MP_APXS=/usr/sbin/apxs First, I removed the original

Re-installing 1.99_08 binary or 1.99_05 RPM in Red Hat 8 [mp2]

2003-01-15 Thread Jon
to get mod_perl 2 working again and forget using the old Apache:: modules, either using the 1.99_08 binary or the 1.99_05-3 RPM. Any suggestions much appreciated! TIA, Jon

RE: development techniques - specifically debug methods

2003-01-09 Thread C. Jon Larsen
web interface without it getting too unwieldy. This will probably be where we spend a lot of time in the first part of the year. Maybe LWP will be handy here. -Fran -- + Jon Larsen; Chief Technology Officer, Richweb.com + GnuPG Public Key http://richweb.com/jlarsen.gpg + Richweb.com

win32 testing only?

2002-12-05 Thread Jon Reinsch
At http://perl.apache.org/docs/1.0/guide/getwet.html#Installing_mod_perl_for_Window it says: we recommend that mod_perl on Windows be used only for testing purposes, not in production Does this apply to mod_perl 1.0 only, or to 2.0 as well? If both, is it likely to change anytime soon? (I

Knowing the connection status

2002-11-07 Thread Jon
? If you're thinking refuse to do it, go to the makers of the API and beat them untill they fix it up or snort/strace the API and make your own API based of what they send, I've allready thought about it and I've come to the conclusion they're not options :) /Jon

Re: PerlRun and text/xml data: zero bytes

2002-09-20 Thread Jon
of length 0? /Jon

Seg Fault with PHP and Perl together

2002-09-04 Thread Jon Harris
time I try and do things like this on a RAQ something breaks something else, usually its the GUI and I get about 50 phone calls. perl is version 5.005_03, Apache 1.3, PHP 4.21 TIA Jon Harris [EMAIL PROTECTED]

Re: Hiding perl code

2002-07-22 Thread Jon
At my former employer's, we built an Enterprise Management System out of mod_perl. He wants to distribute it to clients w/o risking theft of his code. --Jon R. PGP Key fingerprint = 12 DA FC 06 AB 4C D6 A4 DE 03 E0 77 D6 DE E0 73 PGP public key available by fingering [EMAIL PROTECTED] On Mon

Re: separating C from V in MVC

2002-06-13 Thread Jon Robison
without resorting to huge IF statements. Is this what was meant guys? --Jon R. If this is overly simplistic, or not what you meant, feel free to smack me around.

Re: Idiot question: headers at the base of the page.

2002-06-13 Thread Jon Robison
Don't recall offhand, but I know there is an http.conf momd_perl config command that will set 'auto-header' for you. Perhaps that is already on? --Jon Robison Issac Goldstand wrote: umm... If you send them twice. Aside from happening by doing $r-send_http_header twice (it's happened

Sending Mail

2002-06-13 Thread Jon Robison
in a textual format, and send the mail. I'm just looking for recommendations on a good perl mailing module for this kind of use. --Jon Robison

Re: Sending Mail

2002-06-13 Thread Jon Robison
Can MIME::Lite do attachments? --Jon Joe Breeden wrote: We use MIME::Lite seems to work well for us. -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 8:57 AM To: [EMAIL PROTECTED] Subject: Sending Mail Can anyone give me

Re: Sending Mail

2002-06-13 Thread Jon Robison
Geesh, it's nice having the books author(s) on the mailing list here! --Jon R. Geoffrey Young wrote: Jon Robison wrote: Can MIME::Lite do attachments? yes. there is an example in the cookbook that uses MIME::Lite: http://www.modperlcookbook.org/code/ch15/Cookbook/Mail.pm http

MVC Topic Joy

2002-06-10 Thread Jon Robison
system, I know I need to re-think what I am doing. Simplistic, yes. Workable, yes. It meets the KISS principle, at least. ;-) Comments, disagreements, smacks across the virtual face willingly accepted. --Jon Robison

Re: MVC Topic Joy

2002-06-10 Thread Jon Robison
the result to $body. It's the html module's job to fill the return from view_data with the correct information. Hope this explanation serves. Like I said, I can't lay claim to being a guru ;-) --Jon Perrin Harkins wrote: Jon Robison wrote: I should never really have to edit #3

Re: RPM for apache/mod_perl/mod_ssl

2002-06-05 Thread Jon Robison
fliptop, I'll take a copy of that spec file, if you don't mind!!! --Jon Robison fliptop wrote: Fran Fabrizio wrote: We're currently struggling for an easy way to distribute our apache/mod_perl/mod_ssl-based application to our data center folks who are in a different state and whom

Re: Apache::TicketAccess

2002-05-31 Thread Jon Robison
You might want to consider Apache::AuthTicket, which IS in CPAN. It's an expanded version of the Eagle book's modules, and very capable, yet also relatively simple. --Jon Robison Per Einar Ellefsen wrote: At 21:50 31.05.2002, Arnold van Kampen wrote: Hi Where did it go? The modules

Re: [OT] Refs don't work, like I want

2002-05-17 Thread Jon Robison
(@args); $i++) { $vars-{$args[$i]} = $vals[$i]; } $var-{'key1'} = some other value; This would not have overwritten the $var-{'key2'} assignment. --Jon Robison F.Xavier Noria wrote: On Fri, 17 May 2002 17:10:53 +0300 (EEST) Viljo Marrandi [EMAIL PROTECTED] wrote: : $vars-{'key2'} = value

Re: Scope of Perl Special Variables

2002-05-05 Thread Jon
I thought that using 'local' would successfully scope those globals to within a sub, so you could,k for example, slurp an entire file by doing: local $/ = undef; my $file = FH; Or am I wrong in that? I use it frequently, and don't seem to have any troubles. --Jon R. PGP Key fingerprint = 12

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Not sure I would want this person evaluating my books . . . not so great if you need your hands holded. Somebody get this reviewer a grammer checker! --Jon Robison Stas Bekman wrote: For a nice review of the latest and the greatest mod_perl cookbook head to perl.com

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
No it is not. It should read not so great if you need your hands held. --Jon R Wiswell, Virginia wrote: Somebody get this reviewer a grammer checker! this is a joke, right? -Original Message- From: Jon Robison [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 9:14 AM

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Oye! Hmmat least I have the excuse that I'm not a writer ;-) --Jon Fran Fabrizio wrote: Wiswell, Virginia wrote: Somebody get this reviewer a grammer checker! this is a joke, right? Uh, Jon, she was pointing out that you misspelled 'grammar'. :-) -Fran

Re: the cookbook review on perl.com

2002-04-26 Thread Jon Robison
Crud! Well, at least I hadn't said spell checker! --Jon fliptop wrote: Jon Robison wrote: No it is not. It should read not so great if you need your hands held. i think he was referring to the fact that you spelled grammar incorrectly.

Re: Apache::OK error

2002-04-25 Thread Jon Robison
maybe a use Apache::Constants qw/ :common /; --Jon Robison Lihn, Steve wrote: Hi, I am testing the Apache::Echo connection handler for Apache2 and mod_perl 2. But encounter the following error: [Thu Apr 25 15:32:15 2002] [error] failed to resolve handler `Apache::Echo' [Thu Apr

Re: full-featured online database apps

2002-04-24 Thread Jon Robison
of administering mysql databases. www.webmin.com --Jon Robison Adi Fairbank wrote: Does anyone know of a good customizable, user-friendly, online database application, preferably mod_perl-based? I want to migrate a small Access database to MySQL with a web interface, for added features and room

RE: Content management systems

2002-04-09 Thread Jon Coulter
Yeah, the system that runs slashdot (and many other major sites), 'slashcode' is in modperl: www.slashcode.com I think the 'everything' system that runs perlmonks.org is in mod_perl too, might want to check it out (just see the perlmonks' site) Jon Coulter [EMAIL PROTECTED] -Original

Re: mod_perl and open files limit

2002-04-06 Thread jon schatz
be done to find out what causes the problem? try lsof(8), which will list all open files (and the process they belong to). -jon -- [EMAIL PROTECTED] || www.divisionbyzero.com gpg key: www.divisionbyzero.com/pubkey.asc think i have a virus? www.divisionbyzero.com/pgp.html You

Apache 2.0 gold -- now when mod_perl 2.0?

2002-04-05 Thread Jon Coulter
It looks like Apache 2.0(.35) is 'gold', so when can we expect a 'gold' version of mod_perl 2.0 so we can actually make apache 2 fun? ;p Jon Coulter [EMAIL PROTECTED]

Apache::VMonitor not showing requests (might be Apache::Scoreboard problem)

2002-04-04 Thread Jon Molin
mysql); #END And here's my system: Embedded Perl version v5.6.0 for Apache/1.3.23 (Unix) mod_perl/1.26 $Apache::VMonitor::VERSION = '0.6'; Apache::Scoreboard version: $VERSION = '0.10'; So is there anything obivous I've missed out? /Jon

Re: AddModule mod_perl.c

2002-03-27 Thread jon schatz
HOWTO). Walks you through compiling apache + mod_perl + mod_ssl + php + just about everything else you need. i keep it bookmarked because i always forget the openssl commands to generate a self-signed certificate. http://www.delouw.ch/linux/apache.phtml -jon -- [EMAIL PROTECTED

Re: Accessing Apache master process pid

2002-03-26 Thread Jon Jensen
On Wed, 20 Mar 2002, Geoffrey Young wrote: Jon Jensen wrote: Within mod_perl, I would like to know the pid of the master Apache daemon, well, here's one other way: Perl $Apache::Server::SaveConfig = 1; $PidFile = 'logs/httpd.pid'; /Perl PerlInitHandler 'sub { warn

Re: Asia To USA Shipping Rates

2002-03-25 Thread Jon Molin
*many* customers. . .and will further go to any pains to direct traffic to their competitors. Period. yeah and then they'll sell our addresses, earn a small amount of money and fill our inboxes with spam. do you send mail to 'reply to this address if you wanna be removed too'? ;) /Jon we

Accessing Apache master process pid

2002-03-19 Thread Jon Jensen
unavailable. (Apache::Scoreboard, for example.) Does anyone know of a nice way to do this? Thanks, Jon

Re: Accessing Apache master process pid

2002-03-19 Thread Jon Jensen
On Wed, 20 Mar 2002, Stas Bekman wrote: Jon Jensen wrote: Within mod_perl, I would like to know the pid of the master Apache daemon, perldoc -f getppid Thanks, Stas. I should've found that. I'm still interested in getting the PidFile setting at runtime, but can live without it if I

Re: Net::LDAP::Extension

2002-02-27 Thread Jon Molin
Murugan K wrote: Hi Can please you direct me to the Net::LDAP::Extension Documentation. http://search.cpan.org/search?mode=modulequery=Net%3A%3ALDAP%3A%3AExtension Thanks in advance. Regards K.Murugan

Re: Apache::Session

2002-02-26 Thread Jon Robison
As an add-on to this, does anyone know if one could use MySQL HEAP (memory resident) tables for the session table? --Jon Robison Rob Bloodgood wrote: I am using Apache::Session with Postgresql. Unfortunately I had never worked with a huge amount of data before I started to program

Re: how to pass data in internal redirects?

2002-02-26 Thread Jon Robison
$r-pnotes persist across internal_redirects, I believe. --Jon Robison Igor Sysoev wrote: On Tue, 26 Feb 2002, F. Xavier Noria wrote: I suppose that controllers would use internal redirects to call the views, is there a way to pass Perl data this way? For example, in the hangman game

Re: POST without any content - sometimes

2002-02-16 Thread jon
the problem? I don't know about Personal Firewall, but Norton Internet Security does indeed strip off referer tags. We discovered this at work while debugging a similar problem. This is part of the Privacy Control component -jon -- [EMAIL PROTECTED] || www.divisionbyzero.com gpg key

Re: POST without any content - sometimes

2002-02-15 Thread jon schatz
On Fri, 2002-02-15 at 16:07, Ged Haywood wrote: [snip,snip] to use tcpdump in this case, Any hints? You can use tcpdump to record the entire conversation between the browser and the server. To find out how to use it you can just type 'man tcpdump'. although tcpdump output isn't very

Re: POST without any content - sometimes

2002-02-15 Thread jon schatz
On Fri, 2002-02-15 at 16:20, jon schatz hit the send button to quickly: runs on *nix and win32. using something like this makes it easier t meant to say makes it easier to see the actual HTTP conversation, not just the tcp traffic. oops. -jon -- [EMAIL PROTECTED] || www.divisionbyzero.com

Re: Question...

2002-02-13 Thread Jon Robison
On page leave? Well I think you can of course use javascript on all the links on the page, but I don't believe you can do much about the user typing in a new url in the browser. . . but that's just IMHO. --Jon Ryan Parr wrote: I think I'm missing something... If you set a session cookie

Re: Question...

2002-02-12 Thread Jon Robison
Cookies! /me is in smartass mode today. --Jon Ron Beck wrote: Hello all, I need to know how to clear the $ENV variables. For example, I use a .htaccess file for specific directories which requires the user to enter userID and password. When they exit the page, I want them to have

Re: [OT] callisto software graphics

2002-02-07 Thread Jon Robison
Obviously one of those Use our program to build your web site in just 1 hour! things. Maybe NOFusion? It used to come with a bunch of those Fast Templates --Jon R. Aaron Ross wrote: http://callistocms.com v http://w.moreover.com/ hmmm -- aaron ross . alias i, inc email

Tracing script with problem

2002-01-25 Thread Jon Molin
. /Jon

Re: Tracing script with problem

2002-01-25 Thread Jon Molin
be used for checking the parameters, and not only loging. /Jon _ Stas Bekman JAm_pH -- Just Another mod_perl Hacker http://stason.org/ mod_perl Guide http://perl.apache.org/guide mailto:[EMAIL

Re: DECLINED unless 'text/html' but images never make it

2002-01-14 Thread Jon Robison
How about trying: return DECLINED unless $r-is_initial_req; Image calls are not initial requests, they are sub requests. --Jon Robison R.Munden wrote: I've a script (controlled by a Location directive) that wraps a standard header and footer around an HTML page I've this at the top

Re: Apache and Perl togheter

2002-01-09 Thread Jon Molin
error log have you checked the error log? /Jon The CGI script is a stupid test hello world CGI script ... Script written in sh script work. Can someone solve my problem please... Thx to all Alan

Re: Apache and Perl togheter

2002-01-09 Thread Jon Molin
Alan Civita wrote: is it possible that i have to do something special in compiling apache to activate the perl mode? have you read at perl.apache.org? or about executing cgi's in apache? /Jon

Re: Suggestions on an XML-RPC Service using modperl?

2002-01-02 Thread Jon Robison
As far as the cacheing goes, we have had extremely good luck with IPC::ShareLite used to share info across mod_perl processes. --Jon R. Chip Turner wrote: Bruce W. Hoylman [EMAIL PROTECTED] writes: Ciao! I would like some input on an intranet web service I am currently

PushHandler and Cookies

2002-01-01 Thread Jon Robison
, to no avail. --Jon Robison

Re: mod_perl vs. C for high performance Apache modules

2001-12-14 Thread C. Jon Larsen
quickly. When you prove that the prototype works you don't need to rewrite - mod_perl scales up better than any other web application technology available - period. -jon On Fri, 14 Dec 2001 [EMAIL PROTECTED] wrote: -- Jeff Yoak [EMAIL PROTECTED] on 12/14/01 12:58:51 -0800 This is something

[OT] eval

2001-12-10 Thread Jon Molin
(0x80f8270)= ie it doesn't seems to find the variable...This seems like vodoo to me. Can anyone explain or point me to a place with an explanation? /Jon

Re: Doing Authorization using mod_perl from a programmersperspective

2001-12-10 Thread Jon Robison
development, etc. where menus differ based on some criteria for users) --Jon Robison David Young wrote: fliptop wrote: Joe Breeden wrote: How does this work in an environment with two (or more) computers with the exact same configuration, and probably the same HTTP_USER_AGENT behind the same

Re: [modperl site design challenge] please vote

2001-12-04 Thread Jon Molin
/candidates/allan-juul/ /Jon

Deleting a cookie

2001-11-27 Thread Jon Robison
I have created a login system using the wonderful Ticket system from the Eagle book. I have modified TicketAccess so that after authentication, it reviews the arguments in the query string and does push_handler, the handler being chosen based on the args. My only problem is that I want to

Re: Doing Authorization using mod_perl from a programmers perspective

2001-11-19 Thread Jon Robison
Randall, you want to expound upon that? --Jon Robison Randal L. Schwartz wrote: fliptop == fliptop [EMAIL PROTECTED] writes: fliptop i have found that using the HTTP_USER_AGENT environment fliptop variable instead of ip address solves the problem with proxy fliptop servers and the md5

Re: Doing Authorization using mod_perl from a programmers perspective

2001-11-19 Thread Jon Robison
How about using an Apache::Sessions id instead of IP address? --Jon Robison Randal L. Schwartz wrote: fliptop == fliptop [EMAIL PROTECTED] writes: fliptop i have found that using the HTTP_USER_AGENT environment fliptop variable instead of ip address solves the problem with proxy

Re: Doing Authorization using mod_perl from a programmers perspective

2001-11-16 Thread Jon Robison
fliptop wrote: Jon Robison wrote: The most relevant section for you is the Ticket system he describes. (I believe the section header says something about Cookies, but you'll know you have the right one when you see TicketAccess.pm, TicketTools.pm, and TicketMaster.pm. One nice

Re: Doing Authorization using mod_perl from a programmers perspective

2001-11-15 Thread Jon Robison
Jonathon, I am doing exactly this also. What works is this: Get a copy of Writing Apache modules with perl and C and read it. The most relevant section for you is the Ticket system he describes. (I believe the section header says something about Cookies, but you'll know you have the right one

Silly Newbie Question: cookies and such

2001-11-12 Thread Jon Robison
Unfortunatly, I find myself with a silly newbie question: I need to make an Apache module (not a Registry script) which will: 1. Check for a cookie, and if not there, pushhandler to a module for logging in (keeping the original request at hand for use after they succeed in logging in). 2.

Re: [JOB] Red Hat Network Web Engineer positions open

2001-11-08 Thread Jon Robison
Jiminy Crickets Chip! Yer makin me drool! If it weren't for the Move to NC part, I'd be doing my best to be your new closest buddy ;-) --Jon Robison Uniphied Thought, LLC Dearborn, MI Chip Turner wrote: Hello all, We have a couple openings doing intense and interesting mod_perl work

Re: [OT] FW: OWASP Update

2001-10-29 Thread Jon Molin
only me that get 404 Not Found ? both on http://www.owasp.org/projects/cov/index.htm and http://www.owasp.org is this the beginning of a new word? the site has been modperled :) /jon Matt Sergeant wrote: Not sure if this should really be considered off topic, as it should be required

Re: @INC

2001-10-23 Thread Jon Robison
Plows, Sean (London) wrote: How can I set this as my cgi's can't locate my libs? Regards, Sean Plows Sean - try use lib '/path/to/my/libs'; That should append your library path to @INC. Word on the street is that you NEVER EVER want to mess with @INC directly. Jon Robison !Uniphied

Re: Touble getting apache going...

2001-09-11 Thread Jon Molin
Tim J Spriggs wrote: I am running Debian Linux(Woody) and installed apache-perl and all of the supporting libraries. Whenever Apache is run I get the error message: --- [Mon Sep 10 16:50:03 2001] [error] Can't locate

tracing memory problem

2001-09-07 Thread Jon Molin
httpd doesn't help me too much... /Jon

Re: tracing memory problem

2001-09-07 Thread Jon Molin
Stas Bekman wrote: On Fri, 7 Sep 2001, Jon Molin wrote: Hi list, I have a memory leak in a script or module, the problem is that i've resently added many scripts and modules and can't easily isolate the problem. Is there a way besides strace to see what the httpd process is up

Re: Apache::Request cookie handling methods?

2001-09-03 Thread Jon Nangle
princepawn == princepawn [EMAIL PROTECTED] writes: princepawn Could someone point me to the documentation for princepawn apache-based cookie handling? perldoc Apache::Cookie Jon

Re: using mod_perl

2001-08-24 Thread Jon Molin
try looking at http://perl.apache.org/ /jon [EMAIL PROTECTED] wrote: Hi! I am wondering if anyone could tell me how to actually run modperl on my webserver i have perl modules installed to run without modperl and dont know how to invoke the process to get them working can anyone help

perlmagick and leaking memory

2001-08-21 Thread Jon Molin
Write before print $montage-ImageToBlob(); undef $montage; undef $images; undef $image_obj; Anyone see any obvious mistakes? I also tried putting this before the undef's but it didn't do any difference: for (my $i = 0; $i = 48; $i++) { undef $image_obj-[$i]; } /Jon

RE: Problem with ASP Pages

2001-04-17 Thread Bridges, Jon
"Bridges, Jon" wrote: I'm working on Windows 2000 and have finally managed to get the mod_perl and Apache::ASP extensions working. I can confirm this as when I open up .htm files with embedded asp everything works fine. However I come across a problem when trying to view .asp f

Problem with ASP Pages

2001-04-12 Thread Bridges, Jon
and download them. Has anyone got any ideas on why this is happening Thanks Jon

Sr software engineer positions at AvantGo

2001-02-07 Thread Jon Swartz
with C and/or Perl, Apache, SQL, and a computer science or equivalent degree. All positions are full-time and on-site. Occasional work-at-home may be negotiated. Send your resume to [EMAIL PROTECTED] or [EMAIL PROTECTED] if interested. Cheers Jon

Re: can't flush buffers?

2000-12-23 Thread C. Jon Larsen
I posted something like this a week ago, but typos in my message kept anyone from understanding the issue. I am trying to return each row to the client as it comes from the database, instead of waiting for all the rows to be returned before displaying them. Why would you

Apache::DBI

2000-11-13 Thread Jon Molin
won, without Apache::DBI. Am I doing something wrong? I've added 'PerlModule Apache::DBI' in httpd.conf and as I could understand it wasn't it nessicery to add anything else... /Jon

Re: Forking in mod_perl?

2000-10-04 Thread C. Jon Larsen
I use a database table for the queue. No file locking issues, atomic transactions, you can sort and order the jobs, etc . . . you can wrap the entire "queue" library in a module. Plus, the background script that processes the queue can easily run with higher permissions, and you don't have to

Re: reloading PerlHandlers

2000-08-11 Thread Jon Nangle
In-Reply-To: 2810230556.A628@isis But, when I tweak the code of a module I have to do an apachectl graceful or something, very annoying. perldoc Apache::StatINC and read the guide: http://perl.apache.org/guide/ Jon

Re: [OT] Anyone know a good perl mailing list?

2000-07-19 Thread Jon Wyatt
) I will email you each and every message on your required NG and will mail any of your replies under the pseudonym 'Arthur Drainpipe'. Jon.

Re: HTML::Mason - declaration of subs outside out %ONCE sections?

2000-07-06 Thread Jon Nangle
ing values properly), but it's better to avoid the problem altogether and define your subs in the %once section. Better still, consider making your subroutine a separate component or subcomponent. By the way, there is a dedicated mailing list for Mason at: http://netizen.com.au/mailman/listinfo/mason Jon

Re: How to configure Apache to make work CGI ???

2000-07-05 Thread Jon Wyatt
execution of cgi scripts. If you already have achieved some of these then you need to be more specific about what isn't happening and what error messages you are getting. Jon.

Re: Virtual Hosts and POST

2000-07-03 Thread Jon Wyatt
Jay J wrote: Jon Wyatt wrote: [EMAIL PROTECTED] wrote: Simple first stage question:- Your not using mod_rewrite at all (it took me 6 hours to work out that that was causing the same problem for me). I wasn't but I am now and it's made no difference

Virtual Hosts and POST

2000-06-30 Thread Jon Wyatt
all PerlSendHeader On /Location Jon.

Re: Virtual Hosts and POST

2000-06-30 Thread Jon Wyatt
[EMAIL PROTECTED] wrote: Simple first stage question:- Your not using mod_rewrite at all (it took me 6 hours to work out that that was causing the same problem for me). I wasn't but I am now and it's made no difference. Next ;-) Jon.

Re: Virtual Hosts and POST

2000-06-30 Thread Jon Wyatt
Jon Wyatt wrote: [EMAIL PROTECTED] wrote: Simple first stage question:- Your not using mod_rewrite at all (it took me 6 hours to work out that that was causing the same problem for me). I wasn't but I am now and it's made no difference. I'm going to change my mind now. I'm

Re: unsubscribe instructions

2000-05-23 Thread Jon Wasserman
Yeah!!! ME TOO. How the heck do I unsubscribe. The e-mail is increasing exponentially. From: "Fabio Arciniegas A." [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: unsubscribe instructions Date: Tue, 23 May 2000 09:46:53 -0400 Hello, I'm sorry to send administrative questions to the list, but

Re: [RFC] Do Not Run Everything on One mod_perl Server

2000-04-19 Thread C. Jon Larsen
My apache processes are typically 18MB-20MB in size, with all but 500K to 1MB of that shared. We restart our servers in the middle of the nite as part of planned maintenance, of course, but even before we did that, and even after weeks of uptime, the percentages did not change. We do not use

Re: performance mongers: since when is using CGI.pm or Apache::Registrydishonorable?

2000-03-29 Thread C. Jon Larsen
CGI.pm is a great piece of code, but its very monolithic. Lincoln/Doug's libapreq module is probably much faster (I have never run benchmarks) than CGI.pm, so it makes sense for those who like the Q-param type interface (I do) for working with CGI environment variables, but don't need all the

Re: Any help showing examples of database only web site w/mod_perl/my sql

1999-10-26 Thread Jon J
--- "I keep banging my head on things," Tom said, bashfully. ------- Jon J - Web Development for Shore.Net E-mail: [EMAIL PROTECTED]