Approaches to upgrading Apache but not mod_perl

2003-02-26 Thread Carlos Ramirez
I've been using apache/mod_perl for some time now and have upgraded apache many times with mod_perl. In most cases I've only had to upgrade the web server only but since I use mod_perl I also compile mod_perl statically. Now my question is: What's the correct or best approach of compiling

Re: Re: Defaulting to default-handler from custom handler

2002-10-03 Thread Carlos Ramirez
and the book too ;) -Carlos From: Geoffrey Young [EMAIL PROTECTED] Date: 2002/10/03 Thu AM 07:11:29 CDT To: Carlos Ramirez [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: Defaulting to default-handler from custom handler All four cases result in the Perl code being displayed instead

Defaulting to default-handler from custom handler

2002-10-02 Thread Carlos Ramirez
What is the proper way to revert back to the default-handler from a custom PerlHandler? My handler is only defined in ScriptAlias'd locations. In the cases when I want the default-handler to process the cgi request, that is have mod_cgi (i.e. perl-script) run the script I tried:

Re: [OT] Thought for the Day

2002-03-12 Thread Carlos Ramirez
I wrote an article about Apache::Motd for UNIX SysAdmin magazine (March 2001 issue). Here's the link: http://www.samag.com/documents/s=1153/sam0103a/ -Carlos Geoffrey Young wrote: John Eisenschmidt wrote: Sinister, aren't I? G For the record I did email directly an explanation of what

Re: [Samba authorization]

2002-02-22 Thread Carlos Ramirez
, # either an @INC problem, or re-install mod_perl. } else { problem with your Perl installation # re-install Perl } -Carlos Andrew Afliatunov wrote: Carlos Ramirez wrote: Here are some fixes I incorporated into my private copy of Authen::Smb and Apache::AuthenSmb modules

Re: [Samba authorization]

2002-02-19 Thread Carlos Ramirez
Here's the link to the post on modperl mailing list: http:[EMAIL PROTECTED] -Carlos Carlos Ramirez wrote: Here are some fixes I incorporated into my private copy of Authen::Smb and Apache::AuthenSmb modules. These changes are based on some discussion I found in the modperl mailing list

Re: RE: [Samba authorization]

2002-02-19 Thread Carlos Ramirez
Here are some fixes I incorporated into my private copy of Authen::Smb and Apache::AuthenSmb modules. These changes are based on some discussion I found in the modperl mailing list posted on Thu, 16 Sep 1999 by Matt Arnold. I basically copied Matt's suggestions and added them in. I was getting

Re: [modperl site design challenge] and the winner is...

2001-12-18 Thread Carlos Ramirez
Thomas Klausner wrote: # Design by Votes -- 1. Thomas Klausner 86 yeah! Congrats Thomas! (and Allan). Ideally if Thomas, Carlos and Allan could take the best of each other's work and produce the perfect design, that That would be OK for me, Carlos, Allan??

fatal Relocation error (revisted)

2001-04-16 Thread Carlos Ramirez
ne 5 BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/Apache/AuthenSmb.pm line 5. Can someone point me in the right direction? Thanks, Carlos -- ------- Carlos Ramirez + Boeing + Reusable Space Systems + 714.372.4181 ---

Re: mod_perl based Authentication ...

2001-03-28 Thread Carlos Ramirez
and I am sorry if this is answered earlier. > > Regards, > > Sumit/> > > __ > Do You Yahoo!? > Get email at your own domain with Yahoo! Mail. > http://personal.mail.yahoo.com/?.refer=text -- -----

Re: IDE for Perl

2001-02-01 Thread Carlos Ramirez
> "It's the same thing we do every night, Pinky." > > I prefer vi. ;^) ky -- --- Carlos Ramirez + Boeing + Reusable Space Systems + 714.372.4181 --- -- Don't make me use uppercase

Re: can't flush buffers?

2000-12-24 Thread Carlos Ramirez
Browsers cannot display a table until it has enough information about the table, this includes the end table tag. Even if you flush output, the browser does not display until it encounters the end table tag. So from the looks of your example, the end table tag is not printed until all records are

Re: [OT] mod_motd

2000-12-07 Thread Carlos Ramirez
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- --- Carlos Ramirez + Boeing + Reusable Space Systems + 714.372.4181

Re: dynamic vs. mostly static data

2000-11-02 Thread Carlos Ramirez
;"The superior man understands what is right; > the inferior man understands what will sell." > -- Confucius > -- --- Carlos Ramirez + Boeing + Reusable Space Systems + 714.372.4181 --- -- Don't make me use uppercase

Re: @INC startup under Win32

2000-10-11 Thread Carlos Ramirez
stem32/lib .) at (eval 1) line 1 Ok, so it can not find my libs which live in C:\Perl\lib. How do I get apache on startup to see the proper lib files? John- -- ------- Carlos Ramirez + Boeing + Reusable Space Systems + 71

Re: @INC startup under Win32

2000-10-11 Thread Carlos Ramirez
e gives me the same error. @INC is only consisting of C:\winnt\system32\lib which isn't even in my Path environment variable. I have no idea where Apache is getting its @INC from at startup.. Thanks though :( John- At 03:27 PM 10/11/00 -0700, Carlos Ramirez wrote: >Update your PATH eviron

Apache Perl Sections Woes

2000-10-06 Thread Carlos Ramirez
I'm trying to configure my Apache config file using Perl Sections. I'm stuck in trying to populate a Directory directive with a bunch of "Allow from"s like so: ## Get my "allow froms" from an existing list of ip addresses my $accessfile = '/usr/local/etc/apache_1.3.12/conf/accesscontrol.conf';

Re: Apache::ASP

2000-10-02 Thread Carlos Ramirez
quot; size=4> 34: ' 35: ); 36: 37: ## CODE BEGIN ## 38: response.write "Hello, ASP World!" 39: ## END ## 40: 41: $main::Response->Write( 42: ' /font> 43: /body> 44: /html> 45: ' 46: ); 47: 48: 49: ####### 50: ## End script insert 51:

Re: PerlAuthenHandler advice needed.

2000-09-28 Thread Carlos Ramirez
rote: Please explain again how to get my AuthHandler called without setting AuthName or AuthType in httpd.conf. Thanks. -Todd On Wed, 27 Sep 2000, Carlos Ramirez wrote: By choosing to use your custom AuthHandler, you basically override Apache's way of handling the particular phas

Re: PerlAuthenHandler advice needed.

2000-09-28 Thread Carlos Ramirez
f these work for me. Thanks for the helpful insights and explanations DougI have seen the light ;) -Carlos Doug MacEachern wrote: On Wed, 27 Sep 2000, Carlos Ramirez wrote: > my $authheader = 'Basic realm="'.$realm.'"'; > > $r->header_out("WWW-Authenticate" ,

Re: PerlAuthenHandler advice needed.

2000-09-27 Thread Carlos Ramirez
hanks for the help. -Todd On Wed, 27 Sep 2000, Carlos Ramirez wrote: > You can you use Location to specify seperate AuthUserFile's like so: > > Location /companyA> > AuthType Basic > AuthName CompanyA > AuthUserFile path/to/CompanyAUsersFile > > /Location> > > Lo

Re: PerlAuthenHandler advice needed.

2000-09-27 Thread Carlos Ramirez
realm will not be known until I get path_info so > > Location>/Location> directives will not work. > > > > 2. How can I get Perl to do the password lookup in the dynamically > > selected AuthUserFile? > > > > Thanks for the help. > > > > -Todd

Re: flush and print

2000-09-12 Thread Carlos Ramirez
int. So using $| to show some output to the user is not of any use since it works after every print.. I find the table function convenient, so I was hoping for another way of flushing the output. Clues? Arnold -- ------- Carlos Ramirez +

Re: persistent info (storing config?)

2000-09-11 Thread Carlos Ramirez
ail welcomed It should be first patch, not first post. -- Alan Cox Part 1.2Type: application/pgp-signature -- --- Carlos Ramirez + Boeing + Reusable Sp

Re: Build problems on Solaris

2000-08-31 Thread Carlos Ramirez
r of Perl malloc() bugs have been fixed since 5.004_04 -- ----------- Carlos Ramirez + Boeing + Reusable Space Systems + 714.372.4181 ---

RE: Building mod_perl and mod_jserv into same apache

2000-08-21 Thread Carlos Ramirez
You have to activate both modules in order to build them into apache. I've built both together successfully. Your description suggests that your problem exists on the mod_perl side. What errors are you getting on the mod_perl side? --Original Message-- From: "Jeff Warner" [EMAIL

RE: Adding an entry into .htpasswd

2000-08-14 Thread Carlos Ramirez
Look into HTTPD::UserAdmin and HTTPD::GroupAdmin modules from CPAN. --Original Message-- From: "Shuba Simha" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: August 14, 2000 4:16:17 PM GMT Subject: Adding an entry into .htpasswd Can anybody tell me if there is any way to add an entry

Re: Apache::ASP installation woes

2000-08-01 Thread Carlos Ramirez
ern Daylight Time, [EMAIL PROTECTED] > writes: > > > I would advice to use the CPAN installer, which will save you a lot of time, > > effort and worries. > > > > Ime > > Which is available simply by typing > # perl -MCPAN -e shell -- ----

Re: How to know if mod_perl is installed?

2000-07-13 Thread Carlos Ramirez
Try httpd -l or httpd -L (if forgot which on or type httpd -help) This will give you a list of compiled modules, you should see mod_perl.c -Carlos "Richard M. Lemanski" wrote: I need to know if I have mod_perl already installed on my Linux box. I am using Mandrake Linux 7.0 and I believe

[New Module] Apache::Motd

2000-07-12 Thread Carlos Ramirez
See sample provided: motd.txt =head1 REQUIREMENTS Apache::Cookie But I can (might) illiminate this requirement if (when) I implement my own parse incoming header and look for CookieName routine. =head1 SEE ALSO perl(1), mod_perl(1), Apache(3) =hea