Re: Re: Re: redirecting a domain [OT]

2000-07-16 Thread Todd Finney
At 12:26 AM 7/17/00, Tom Brown wrote: >On Sun, 16 Jul 2000, Barry Hoggard wrote: > > Nothing is wrong with that solution if you only have a few domains. > > We own a lot of misspellings of our company name, so I don't want to > > add each of them individually to the conf file. > >double that count

Patch for easy testing of Apache::* modules

2000-07-16 Thread Ken Williams
Hi list, I've been working on the Apache::test module, trying to make it easier for people to build Apache::* modules with useful test suites. By 'useful', I mean a 'make test' process that actually starts an Apache server and makes some queries of that server. I've been doing this myself for

ANNOUNCE: HTML::Embperl 1.3b4

2000-07-16 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.3b4.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GR/GRICHTER/HTML-Embperl-1.3b4.tar.gz size: 278004 bytes md5: 9fa246a00ad7087ef952b6e84901d076 Embperl is a module for embedding Perl code in HTML pages. See http:/

re: Why is this book out of print?

2000-07-16 Thread m m
Not exactly sure why this book is out of print, "but its available online through the O'Reilly Open Books Project". http://www.oreilly.com/openbook/webclient/ch01.html And I think I saw a copy of it in my local Barnes and Noble, so you might wanna try your local bookstore. >I wanted to use mod_

Why is this book out of print?

2000-07-16 Thread jmeltze
I wanted to use mod_perl with the LWP modules, and I was recommended the Pelican book, "Web Client Programming with Perl". I went looking for it and it is out of print. Has another book replaced it in the O'Reilly library? It seems like it has not lost its relevance. A friend I know who ha

Re: Re: redirecting a domain [OT]

2000-07-16 Thread Sander van Zoest
On Sun, 16 Jul 2000, Barry Hoggard wrote: >> >No! That's a silly way to do it. You want to use mod_rewrite. >> >RewriteEngine On >> >RewriteCond %{HTTP_HOST}  !^www.investorama.com$ >> >RewriteCond %{HTTP_HOST}  !^$ >> >RewriteRule /?(.*) http://www.investorama.com/$1 [R=permanent,L] >> Too c

Re: Re: Re: redirecting a domain [OT]

2000-07-16 Thread Tom Brown
On Sun, 16 Jul 2000, Barry Hoggard wrote: > Nothing is wrong with that solution if you only have a few domains. > We own a lot of misspellings of our company name, so I don't want to > add each of them individually to the conf file. double that count... since you also nicely solved the proble

Help needed for using Apache::DBI

2000-07-16 Thread PHANI MADHAVI
Hi All, we have installed Apache::DBI module ( system os is linux, web server apache, running mod_perl and mysql is rdbms) in our systems. But it is not working. When i try to compile a sample file to test db connectivity using Apache::DBI, it does not work. Same thing works if I use DBI. The err

Re: Re: Re: redirecting a domain [OT]

2000-07-16 Thread Barry Hoggard
Nothing is wrong with that solution if you only have a few domains. We own a lot of misspellings of our company name, so I don't want to add each of them individually to the conf file. Begin Original Message From: Todd Finney <[EMAIL PROTECTED]> Sent: Sun, 16 Jul 2000 22:33:18 -0400 To

Re: Re: redirecting a domain [OT]

2000-07-16 Thread Todd Finney
At 10:23 PM 7/16/00, Barry Hoggard wrote: >No! That's a silly way to do it. You want to use mod_rewrite. >Here's the relevant part of my httpd.conf: > >RewriteEngine On >RewriteCond %{HTTP_HOST} !^www.investorama.com$ >RewriteCond %{HTTP_HOST} !^$ >RewriteRule /?(.*) http://www.investorama.com

Re: Re: redirecting a domain

2000-07-16 Thread Barry Hoggard
No! That's a silly way to do it. You want to use mod_rewrite. Here's the relevant part of my httpd.conf: RewriteEngine On RewriteCond %{HTTP_HOST} !^www.investorama.com$ RewriteCond %{HTTP_HOST} !^$ RewriteRule /?(.*) http://www.investorama.com/$1 [R=permanent,L] Any requests that manag

RE: ORA conference

2000-07-16 Thread Doug MacEachern
On Fri, 14 Jul 2000, Jason Bodnar wrote: > Since nobody had a better idea how about The Crown and Anchor Pub: > > http://www.crownandanchor.net/ cool, me and brian are leaving around 7, we should be in town by 9, and will go there after checking in. you can sorta tell what i look like from thi

Re: Core Dump

2000-07-16 Thread Ask Bjoern Hansen
On Thu, 13 Jul 2000, Dana Powers wrote: > This may or may not have anything to do with mod_perl, but I am subscribed to > this list, so I figure I'll start here. > > I have just compiled Apache/mod_ssl/mod_perl and installed it with essentially > no problems, but when I send a SIGHUP or SIGUSR1

Re: Weird behaviour

2000-07-16 Thread Ask Bjoern Hansen
On Thu, 13 Jul 2000, G.W. Haywood wrote: > > httpd.conf > > I see that %port is a lexical but $Port isn't. Is that a clue? I don't think so. Except if mod_perl does some very weird stuff they should be all separate. try: $foo = "foo"; # no different with or without my $Foo = "Foo"; %foo =

Re: redirecting a domain

2000-07-16 Thread Michael Robinton
Sure, load the page in a frame that hides the second url request On Fri, 14 Jul 2000, Sam Carleton wrote: > I have an apache question and I have NO idea where to post it. Is there > a newsgroup or mailing list simply for apache? > > I have multipal domain names: domain.net & domain.org. I wou

howto config apache to allow perl to filter php pages

2000-07-16 Thread Sam Carleton
I would like perl to process a php page before or after the php interpreter get's it hands on the file. I am trying to add a navbar to the PHP code. How would I go about doing that? Sam

Apache::AuthCookie question

2000-07-16 Thread Elizabeth Gerner
Hi, This may not be anything specific to Apache::AuthCookie. So sorry for the off-topic question. I have been able to get Apache::AuthCookie to work for me on directories other than the URL root . What happens when I do that is that the images in the script invoked by the LOGIN location do not

Re: problems with code in "Writing Apache Modules with Perl and C"

2000-07-16 Thread m m
Hey Sam, humm, I tested my code before sending it to you, it was working on my machine, ..., but lets see. oh wait ok, you said that when you put a debug line right after the chomp, that debug output shows you the entire conf_file? Oh ok I think I know what is going on then. Its the line with the

Re: problems with code in "Writing Apache Modules with Perl and C"

2000-07-16 Thread Sam Carleton
m m wrote: > > folks allow me, Im the other newbie who was grappling > with Apache::NavBar the other day :-) > Ged will be proud, I persevered as he advised ;-) > > Sam new to perl, welcome. > This maynot be the canonically right answer but for a > simple task like youre asking, you can just "wa

Re: using a 3-tier mod_perl setup

2000-07-16 Thread Gunther Birznieks
Is any of this header rewriting already on Ralf's TODO list for mod_rewrite? Does it make sense to make mod_headers more complex? Or to add these features to mod_rewrite already? Just throwing the idea out there. This is an interesting module though. At 09:56 AM 7/11/00 -0700, Tim Bishop wrot

Re: Apache::ASP and HTML::Parser

2000-07-16 Thread Joshua Chamas
Mike Dameron wrote: > > Has anyone used these two together? We have developed a tool which > allows you to edit simple HTML pages within you browser using > HTML::Parser and CGI scripts. We have been porting those scripts over > to ASP. When testing the new scripts it appears as if it unable t