ANNOUNCE: Apache::OpenIndex 1.05

2002-09-04 Thread George Sanderson
Apache::OpenIndex version 1.05 was uploaded to CPAN on 02 Sep 02. New features include: A UserDir directive was added to support user home directories. (Thank Noam Solomon for the spot.) A UserSite directive was added to allow multiple users to share a common GID and site directo

RE: cpan hacked or april fools?

2002-04-01 Thread George Sanderson
ackers almost always >leave their "stamp"... > > >Jonathan M. Hollin - WYPUG Co-ordinator > >West Yorkshire Perl User Group >http://wypug.pm.org/ >http://wypug.digital-word.com/ > ++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

If mod_perl module loaded from within httpd.conf

2002-03-13 Thread George Sanderson
when that module is loaded. +====+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

Re: PREANNOUNCE Tied Request and Cookies Module

2002-01-12 Thread George Sanderson
t; >Any interest, comments, suggestions, Personally, I like placing the most significant part first and using a verb, so how about: Apache::Tie::... and so forth? +====+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

Re: [VERY OT] How to Use Apache as a FTP server

2001-12-20 Thread George Sanderson
///, I need a >>list from my server folders. >> >>Have look at this address,for what I am intending to >>do,..ftp://tiger.com. >> >> >>With Regards, >> >>Anand Ratnasabapathy, >

Please ignore this message (just a test)

2001-10-26 Thread George Sanderson
I previously sent two messages today and they did not appear on the list. So I am sending this message as a simple test. ++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

ANNOUNCE: Apache::OpenIndex 1.03

2001-10-26 Thread George Sanderson
OpenIndex provides a file manager for an Apache modperl web site from a web browser. OpenIndex also provides the same functionality as autoindex, therefore it can be used to both manage and navigate a web site. An Apache::OpenIndex (OpenIndex-1.03.tar.gz) update was uploaded to CPAN on 25 Oct 20

ANNOUNCE: Apache::OpenIndex 1.03

2001-10-25 Thread George Sanderson
OpenIndex provides a file manager for an Apache modperl web site from a web browser. OpenIndex also provides the same functionality as autoindex, therefore it can be used to both manage and navigate a web site. An Apache::OpenIndex (OpenIndex-1.03.tar.gz) update was uploaded to CPAN on 25 Oct 20

ANNOUNCE: Apache::OpenIndex 1.02

2001-10-12 Thread George Sanderson
array. 2) The "Copy" command could not copy files with spaces in their name. A filter was added, to prevent non-admin users from creating any hidden files or directories. Again, a demo is available at: http://www.xorgate.com/Apache/OpenIndex/demo +====

[OT] Overridding a module's use of a function

2001-10-11 Thread George Sanderson
; . . . package File::NCopy; use subs qw(glob); sub glob {@_}; package Apache::AAM; . . . Is there a better way to do this? +====+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

[OT] Off Topic?

2001-10-11 Thread George Sanderson
the message to the most appropriate list? ++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

ANNOUNCE: Apache::RedirectDBI 0.02

2001-10-05 Thread George Sanderson
.tar.gz on 05 Oct. 02 to CPAN. (It will take a while for it to show up on CPAN.) The module is also available for download at: http://www.xorgate.com/Apache/RedirectDBI [I think that the Perl public community is really awesome. . .] +====+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

ANNOUNCE: Apache::OpenIndex 1.01

2001-10-03 Thread George Sanderson
. Thank you Tatsuhiko! Again, a demo is available at: http://www.xorgate.com/Apache/OpenIndex/demo ++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

RE: ANNOUNCE: Apache::OpenIndex

2001-10-02 Thread George Sanderson
ache directives to provide the other desired services, while they may not be required for the normal (http) site browser access. Hope this answers your question. ++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

ANNOUNCE: Apache::OpenIndex

2001-09-27 Thread George Sanderson
++ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

Re: Knowledge Base for 2.0

2001-09-17 Thread George Sanderson
be nice if, the information entered during a query could be used to post to an email list. In other words, if the user does not finding useful information, that it would be easy to post a message, that would get human feedback. +====+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com ++

RFC: Apache::RedirectDBI mod

2001-09-13 Thread George Sanderson
the model, if that is acceptable. >-Original Message- >From: George Sanderson [mailto:[EMAIL PROTECTED]] >Sent: Thursday, September 13, 2001 12:12 AM >To: Michael Smith; [EMAIL PROTECTED] >Subject: Apache::RedirectDBI mod > > >I needed something close to what Apac

Re: ANNOUNCE: Apache::OpenIndex

2001-09-08 Thread George Sanderson
ad for only about an hour. +======+ | George Sanderson <[EMAIL PROTECTED]> | http://www.xorgate.com +==+

ANNOUNCE: Apache::OpenIndex

2001-09-07 Thread George Sanderson
problems than they solve. All comments are welcomed. Thank you all for bearing with me during this long development cycle. +==+ | George Sanderson <[EMAIL PROTECTED]> | <http://www.xorgate.com/>http://www.xorgate.com/ +==+

Re: [OT] Reference to a method using a scalar?

2001-09-03 Thread George Sanderson
unless(defined &{$Commands{$command}{cmd}}) { delete $Commands{$command}; # This is bad, so throw it away! warn "$routine routine is not defined"; } for a couple of reasons. 1) The methods are not OO (yet). 2) The above assignm

Re: RFC: Apache::FileMan 0.07

2001-09-03 Thread George Sanderson
It turns out that there are several software applications that go by the name "FileMan". >I have updated Apache::FileMan.pm to pre-release version 0.07. I >substantially reorganized to code. > >FileMan provides a file manager for a web site through a web browser. It >is an extensive rewrite of

RFC: Apache::FileMan 0.07d

2001-08-30 Thread George Sanderson
I have updated Apache::FileMan.pm to pre-release version 0.07d. I substantially reorganized to code. FileMan provides a file manager for a web sites through a web browser. It is an extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake

[OT] Reference to a method using a scaler?

2001-08-19 Thread George Sanderson
I have a Perl scalar ($mystr) that holds a string. I want to use the scalar to form a hash reference to a method after the Perl code is compiled. For example, when I know the method name before compile time, I can say: use strict; %Hashref=( Entry1=>{meth1=>\&method1, do=>'something'},); and t

Re: FileMan core dump

2001-02-23 Thread George Sanderson
At 05:39 PM 2/24/2001 -1100, you wrote: >But, when I add teh line to my httpd.conf file: > >PerlModule Apache::FileMan; > >(the PerlModule Apache::Icon; directive is ok, just comment out >the PerlModule Apache::FileMan and OK, comment it in, and coredump.) > >The Apache server will coredump when

[ANNOUNCE] Apache::FileMan 0.06c

2001-02-22 Thread George Sanderson
FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. FileMan can provide the same functionality as AutoIndex.pm and can be us

Apache::Language STORE needs a language

2001-02-18 Thread George Sanderson
Problem solved: >I am using the latest version of Apache::Language >I noticed that the Apache::Language.pod says that the PlainFile format is: >phrase-id:lang-type > >While the PlainFile.pod says: >lang-tag:phrase-id > >The first one seems to work. > It works like Apache::Language::PlainFile descr

Apache::Language STORE needs a language

2001-02-16 Thread George Sanderson
I am using the latest version of Apache::Language I noticed that the Apache::Language.pod says that the PlainFile format is: phrase-id:lang-type While the PlainFile.pod says: lang-tag:phrase-id The first one seems to work. Also I am getting the following error: warn] [Apache::Language (111)] ST

RFC: Apache::FileMan 0.06

2001-02-13 Thread George Sanderson
I have updated Apache::FileMan.pm to pre-release version 0.06. FileMan provides a file manager for a web sites through a web browser. It is an extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache C module. FileM

Re: Apache FileMan

2001-02-12 Thread George Sanderson
At 02:25 PM 2/11/2001 +, you wrote: >George, > >Just had a peek at your FileMan demo. Looks pretty neat. I too was about >to extend/rewrite Apache::AutoIndex to do some similar things. A few >questions > >Does it use Apache::AutoIndex at all or is it a total rewrite ? There was a lot to do, so

Re: httpd keeps crashing overnight

2001-01-19 Thread George Sanderson
>Hi George, > >Thanks for the reply... > >> >My problem is that the mod_perl httpd is sometimes crashing overnight. In >> >the last three days, it has mysteriously crashed twice. When I restart it >> >with "apachectl_modperl start" (apachectl_modperl is just apachectl but >> >with the config file

Re: FileMan - Not enough arguments for mkdir

2001-01-17 Thread George Sanderson
At 08:59 AM 1/17/2001 +0200, you wrote: >Hi, > >This is me again. Thanks for quick response. Another two questions: >in your demo http://www.xorgate.com/FileMan/demo/.XFM/ >just tried to upload file "1", it reported me "ERROR: MkFile: Parent access >denied" but I suspect it catchup to do open() be

Re: installing modperl

2001-01-17 Thread George Sanderson
At 09:52 AM 1/17/2001 -0200, you wrote: >The documentation in the package is extremely poor, so, may somebody >here points me the right source of documentation? > I had the same first impression, but I have readjusted my thinking to: "The documentation is extremely good, once it is located." Star

Re: [Fwd: AuthenDBI idea]

2001-01-17 Thread George Sanderson
At 08:37 PM 1/15/2001 -0800, you wrote: >On Mon, 15 Jan 2001, Edmund Mergl wrote: > >> any comments ? > >[count number of times a user has logged in and such things] > Hope I am not out of place here, and also that the ideas are generic enough to be applied to a wide number of authentication requi

Re: FileMan - Not enough arguments for mkdir

2001-01-16 Thread George Sanderson
At 03:12 PM 1/16/2001 +0200, you wrote: > >Some linuxes required to have correct permission set in mkdir (it >fails on mkdir $dir; needs to be mkdir $dir,0775;), so make test >fails... (FileMan.pm line 771 and several times below..) > I fixed all the mkdirs with "mkdir $dir,0755". I think 0755 is

Re: FileMan - Not enough arguments for mkdir

2001-01-16 Thread George Sanderson
At 03:12 PM 1/16/2001 +0200, you wrote: > >Some linuxes required to have correct permission set in mkdir (it >fails on mkdir $dir; needs to be mkdir $dir,0775;), so make test >fails... (FileMan.pm line 771 and several times below..) > I fixed all the mkdirs with "mkdir $dir,0755". I think 0755 is

Re: Need: Autherization one time password.

2001-01-14 Thread George Sanderson
At 11:08 PM 1/14/2001 +, you wrote: >I seem to recall Randal did a column in Web Techniques on just such a >thing. Check http://www.stonehenge.com/merlyn/ > >> I want an authorization module to generate a one time password for a >> particular user name. I th

Need: Autherization one time password.

2001-01-14 Thread George Sanderson
I want an authorization module to generate a one time password for a particular user name. For example, lets say I target some user names to have a one time password service by using a directive like: Auth_onetimeruser1, user2, ... If the password was blank (empty), the module would automagi

Re: [ANNOUNCE] Apache-AuthzCache 0.03

2001-01-13 Thread George Sanderson
>When a request that requires authorization is received, >Apache::AuthzCache looks up the REMOTE_USER in a shared-memory >cache (using IPC::Cache) and compares the list of groups in the >cache against the groups enumerated within the "require" >configuration directive. If a match is found, the han

Re: Debugging information sent to browser

2001-01-12 Thread George Sanderson
>Why do you think it would be hard to return AUTH_REQUIRED if the >DEBUG=1 param is in the URL? Granted, the browser issues involved won't >make it the best solution, but no worse than passwords are already. Someone >would have to be using a machine where a valid uid/passwd are in browser cache

Re: Whither gozer?

2001-01-12 Thread George Sanderson
>Philippe M. Chiasson, the mail address given in Apache::AutoIndex is >bouncing (today, at least): <[EMAIL PROTECTED]> If you are >reading this and have a working address, please let me know. > I have been tring to get in touch with Philippe for about 6 months with no success.

Re: RFC: Apache::FileMan pre-release 0.04

2001-01-07 Thread George Sanderson
At 09:19 PM 1/7/2001 -0600, you wrote: >I just tried the demo >(coursoity got the better part of me ;) >and the >username: fileman >password 13dec00 >did not work > Sorry, it appears, I left the demo access wide open and the directory got deleted. Try it again. It should work. (Its now read onl

RFC: Apache::FileMan pre-release 0.04

2001-01-07 Thread George Sanderson
FileMan provides a web site file manager to web browsers. It is an extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. FileMan can provide the same functionality as AutoIndex.pm which means that it can b

OT: HTML/XHTML syntax checking tools?

2001-01-07 Thread George Sanderson
What HTML/XHTML syntax tools are recommended? I was hoping that the tool would run on the browser (client) side. I prefer a PC version, but hey, a good ap is best.-) For example, I am working on a mod_perl module, and I made a HTML typo (TEST instead or TEXT), (belzlare slip). Perhaps I or som

Searching the mod_perl archive works

2001-01-07 Thread George Sanderson
I had a problem and first tried: http://perl.apache.org/guide/perl.html It said to search the mod_perl archive, but it did not provide it's URL (or I did not find it). So then I did a search engine search for "mod_perl archive" and found: http://www.bitmechanic.com/mail-archives/modperl/ Once

mod_perl large scalar cache

2001-01-03 Thread George Sanderson
I have a mod_perl hash scalar that can store up to 4 MB of string data. I was wondering what happens to the memory usage after a "delete $myhash{large}"? I was thinking (I know this can be dangerous:-), it would be nice if I could tell mod_perl to cache scalars that become larger than some speci

RFC: Apache::FileMan pre-release 0.03

2000-12-28 Thread George Sanderson
I have been getting more good feedback on the Apache::FileMan module. FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. F

Re: HTTP authentication based sessioning with logout ability

2000-12-19 Thread George Sanderson
At 06:28 PM 12/19/00 +, you wrote: >Hi there. > >I've been trying to write a system to perform authentication using the www-authenticate (http authenatication) method. However, I need a client visiting the page and having been authenticated to be able to logout and have their browser forget th

Re: RFC: Apache::FileMan

2000-12-18 Thread George Sanderson
At 04:55 PM 12/18/00 -0800, you wrote: >On Dec 18, George Sanderson wrote: >> At 01:40 PM 12/18/00 -0800, you wrote: >a matter of taste, of course. it also depends on your target audience. > The user interface is the most sacred information ground. It's application depends

Re: RFC: Apache::FileMan

2000-12-18 Thread George Sanderson
At 01:40 PM 12/18/00 -0800, you wrote: >you should take a look at the interface of the file management of >some of the free webspace providers. > I have looked at some of these. They do not look and feel like a file manager. They tend to be fragmented and wordy. > >i haven't really looked at the

RFC: Apache::FileMan

2000-12-17 Thread George Sanderson
I have been getting some good feedback on the Apache::FileMan module. FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. F

Re: Email (mod_perl) Apache module?

2000-12-17 Thread George Sanderson
At 09:32 AM 12/15/00 -0300, you wrote: >Jeremy Howard wrote: >> IMHO, the best open source WebMail servers are PHP based > > I have this dangling idea of building a TWIG lookalike (in Perl), with >a 'plug-in'/'module' structure, so I may write the email client, and >others fill with their de

RFC: Email (mod_perl) Apache module?

2000-12-14 Thread George Sanderson
I think it would be cool to have an email Apache module. I was thinking that if the URL was something like: http://www.site.com/user/mail it would activate the module. The module would allow the users to read and send email. Kind of like how I did Apache::FileMan (an Apache web site file man

Re: RFC: Apache::FileMan

2000-12-13 Thread George Sanderson
>FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. FileMan can provide the same functionality as AutoIndex.pm and can be u

Re: RFC: Apache::FileMan

2000-12-13 Thread George Sanderson
At 02:32 PM 12/13/00 -0800 Carlos Ramirez <[EMAIL PROTECTED]> wrote: Looks very nice and useful! Does it use the default apache icons when the files are listed? when do you plan to make it available to the public on CPAN? docs? Yes, it does use the apache icons, just like Apache::AutoIndex.pm.

Re: RFC: Apache::FileMan

2000-12-13 Thread George Sanderson
Stas Bekman <[EMAIL PROTECTED]> At 11:11 PM 12/13/00 +0100, you wrote: > >On Wed, 13 Dec 2000, George Sanderson wrote: > >> At 10:29 PM 12/13/00 +0100, you wrote: >> Do you want me to email you a *.tar.gz file? > >No. Please post the URL. <http://www.xorgate.

RFC: Apache::FileMan

2000-12-13 Thread George Sanderson
I have created a new module that I called, Apache::FileMan.pm. FileMan provides a file manager for a web sites through a web browser. It is a extensive rewrite of the Apache::AutoIndex.pm module (written by Philippe M. Chiasson), which in turn was a remake of the autoindex Apache module. FileMan

Re: Changing a file's UID from within an Apache module?

2000-12-03 Thread George Sanderson
>Prior to creating any file, the user would have been authenticated and an authorize module >would have supplied the UID to be used for the request in an environment variable. The location >of the user's files has to read by Apache so such that it can serve the files (HTML). > >The rational beh

Re: Changing a file's UID from within an Apache module?

2000-12-03 Thread George Sanderson
From: "Tim Tompkins" <[EMAIL PROTECTED]> At 09:55 AM 12/1/00 -0700, you wrote: >I'd put it someplace that is only accessible to the web user if you're going >to do that. > > >From: "Jorge Godoy" <[EMAIL PROTECTED]> >On Wed, 29 Nov 2000, [EMAIL PROTECTED] wrote: >> >> Any ideas about the best way t

Changing a file's UID from within an Apache module?

2000-11-29 Thread George Sanderson
I am creating a mod_perl Apache module. The last functionality that I need to implement is the ability to set the UID of the files and directories which are created and modified by the Apache module to something other than Apache's child UID. For example, if when I built Apache 1.3.14 on Linux 2

Re: User directive

2000-11-23 Thread George Sanderson
At 10:20 PM 8/15/00 -0700, you wrote: >>you want to change the uid at request time? the patch below will let you >say $r->server->uid($new_uid); > >you'll have to maintain changing it back yourself, like so: > >my $old_uid = $r->server->uid($new_uid); >$r->register_cleanup(sub { shift->server->ui

Apache::AuthenDBI request request

2000-11-22 Thread George Sanderson
I need to access DBI table fields in the AuthenDBI/AuthzDBI data base. I think a good way to do this, would be to provide a new directive which would specify the table field values to be placed into the Apache notes. For example: Auth_DBI_note_field UID would add a key/value pair (field_name/valu

Re: [OT] $r->header_out(Location=>"$dst") browser response

2000-11-21 Thread George Sanderson
Follow up: Well I screwed up, but at least now I know it! The 303 status code did give me the result I wanted, but after I removed the bug which caused the problem, I no longer need to use it. (I had a global variable which was previously set and latter caused my REDIRECT to cycle right back to t

Re:coredump on Carps in startup.pl

2000-11-21 Thread George Sanderson
Hey thanks a lot. I'm just going blind or something, because when I see a URL and click... If it quacks, it's a duck :-). But seriously, I have had the problem that this patch is suppose to fix. I do appreciate your efforts. I'll let you know how it turns out. Thanks. At 04:34 AM 11/21/00 +

Re: [OT] $r->header_out(Location=>"$dst") browser response

2000-11-20 Thread George Sanderson
At 11:02 PM 11/19/00 +0100, you wrote: >| Is there a way to tell the browser(s) not to make this same substitution >in >| the near future? >| Or, is there a better way to do a one time only redirect from within a >| dynamic page? > >I don't expect IE to do anything by the rules, but maybe you can

[OT] $r->header_out(Location=>"$dst") browser response

2000-11-19 Thread George Sanderson
I know this is not directly a mod_perl issue, but I did use mod_perl to present the issue. . . So here it is: When I issue: $r->header_out(Location=>"$dst"), The browser (IE 5 in my case so far) goes to the fully specified $dst URL. My problems is that, if the browser attempts to go back to the o

Re: Apache::AuthenDBI NOTICE message

2000-11-15 Thread George Sanderson
>> So far, using Apache::AuthenDBI, I get an error_log message: >> >> NOTICE: Unrecognized variable client_encoding >> >> Every time the DBI ping is called. >> I have not been able to tack down the origin of this message. >> Any ideas or suggestions? > >never seen before. What database do you u

Apache::AuthenDBI NOTICE message

2000-11-13 Thread George Sanderson
It turns out that I am learning about DBI and Apache::DBI. So far, using Apache::AuthenDBI, I get an error_log message: NOTICE: Unrecognized variable client_encoding Every time the DBI ping is called. I have not been able to tack down the origin of this message. Any ideas or suggestions?

RE: database access

2000-11-13 Thread George Sanderson
At 08:04 AM 11/13/00 -0500, you wrote: >I haven't followed this thread too closely, so forgive me if I'm not quite >with it... > >you can already do this with Apache::DBI... > >change DBI->connect() to the (undocumented) 6 parameter call: > > Don't get me wrong here, "but", it would be nice if th

Apache::AutoIndex author

2000-11-07 Thread George Sanderson
I want to enhance Apache::AutoIndex. I have tried to contact Philippe M. Chiasson, but have not had any success. Can someone please tell me how to contact Philippe or whom ever is maintaining the module. Thanks,

Apache_1.3.14 mod_layout 1.24_01 core dump

2000-11-06 Thread George Sanderson
= I am resending this email because I initially sent it out late Friday evening and I only received further questions from one person. I was hoping that someone could shed some light on why I am having problems loading DSO modules wh

Apache_1.3.14 mod_layout 1.24_01 core dump

2000-11-03 Thread George Sanderson
First, off, let me clairfy, I am a Newbie in almost every way. . . I have the following configuration Apache 1.3.14, mod_perl-1.24_01 (static), Perl-5.6.0, Linux 2.2.14. If I load load Apache::Icon, and mod_layout 2.8 (DSO), Apache will core dump and the following gdb bt output is produced: #0

Apache::Icon SIGHUP does not read directives

2000-08-28 Thread George Sanderson
I have very strange problem. With a minimum configuration, (httpd -l) gives: Compiled-in modules: http_core.c mod_env.c mod_log_config.c mod_mime.c mod_negotiation.c mod_dir.c mod_alias.c mod_access.c mod_perl.c suexec: enabled; valid wrapper /usr/local/apache/bin/suexec and wi

Missing src/include/alloc.h ?

2000-08-25 Thread George Sanderson
Please ignore my previous message, I let this message go out to the wrong mailing list. I down loaded the CVS file apache-1.3_2825041201.tar.gz and attempted a make, that included: --add-module=/usr/src/mod_layout-2.3/mod_layout.c It expects src/include/alloc.h I noticed that this header fil

Missing src/include/alloc.h ?

2000-08-25 Thread George Sanderson
I down loaded the CVS file apache-1.3_2825041201.tar.gz and attempted a make, that included: --add-module=/usr/src/mod_layout-2.3/mod_layout.c It expects src/include/alloc.h I noticed that this header file was included in the apache_1.3.12 distribution. Is the file missing?

Re: Apache::Icon fix

2000-08-23 Thread George Sanderson
Update: Apache/1.3.12 (Unix) mod_perl/1.24_01-dev/Perl-5.6.0/linux-2.2.14. (mod_perl linked statically.) with Icon.pm. I hope I am not bugging anyone with my problem and I appreciate any help. I have made some progress isolating the problem. With a minimal config. (with only Apache::Icon load

Re: Apache::Perfmon 0.011

2000-08-22 Thread George Sanderson
At 11:26 AM 8/22/00 +0200, you wrote: >On Tue, 22 Aug 2000, Lupe Christoph wrote: > >> On Monday, 2000-08-21 at 21:06:54 -0400, Greg Stark wrote: >> >> > Lupe Christoph <[EMAIL PROTECTED]> writes: >> >> > > Hmm. Apache::Benchmark sounds more like a benchmark driver to me. >> > > Apache::Instrume

Re: Producing an error page

2000-08-21 Thread George Sanderson
At first, when I read the first message, I said to myself; (self) Why would anyone want an error page with all the Perl HTML STDOUT/STDOUT stuff mixed up together? However, after reading and thinking some more, . . . (just from a conceptional point of view and not from an implementation view poin

Re: Apache::Icon fix

2000-08-21 Thread George Sanderson
I have to admit that a lot of this stuff is a mistry. Recap: My configuration is: apache_1.3.12/mod_perl-1.24/Perl-5.6.0/linux-2.2.14. (I have mod_perl linked statically.) with Apache::AutoIndex.pm loaded. Doug, could you please explain what problem(s) your patch solved? I applied the patch belo

Re: Milage may vary comments

2000-08-20 Thread George Sanderson
>> 2) 'Do not': "PerlFreshRestart On" in httpd.conf. > >Curiously enough, "PerlFreshRestart On" has always worked for me, even >on the production servers. > >It's pretty damn useful too, giving servers a graceful restart everytime >you upload a module... it'd be a pain to have to fully restart th

SIGHUP failure

2000-08-19 Thread George Sanderson
The problem is when I "apachectl restart" (SIGHUP), all Apache processes die (no core dump). However, if I "apachectl stop", (SIGTERM) followed by "apachectl start" everything is OK (no error_log error messages and every thing works fine). My configuration is: apache_1.3.12/mod_perl-1.24/Perl-5.

Re: Milage may vary comments

2000-08-18 Thread George Sanderson
>On Fri, 18 Aug 2000, Roger Espel Llima wrote: > >> > !) 'Do not' load mod_perl as a DSO. > >This should be a golden rule if you plan on HUPing your server with any >regularity. > >> > 2) 'Do not': "PerlFreshRestart On" in httpd.conf. >> >> Curiously enough, "PerlFreshRestart On" has always worke

Milage may vary comments

2000-08-18 Thread George Sanderson
I the past 6 weeks I have been working on various problems with Apache/mod_perl/AutoIndex.pm. There needs to be a "Your Mileage May Vary" (YMMV) reference page that is easily accessible. For Example,after scratching at the mouse pad, I found the following URLs with practical information: http:/

AutoIndex.pm reading autoindex directives

2000-08-14 Thread George Sanderson
Well I finally got AutoIndex to load and run. But, . . . It does not read the autoindex directives from the httpd.conf file. I believe these are suppose to be processed by Apache::Icon. My httpd.conf is: # PerlModule Apache::AutoIndex PerlModule Apache::Icon SetHandler perl-script PerlHandler A

Re: Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-14 Thread George Sanderson
I was able to get the Apache::AutoIndex module to load and run by statically building mod_perl into Apache. Thanks. Somebody should fix the flaky DSO. I did notice that the problems are timing related. I would could get different results when I did a fast "apachectl stop", "apachectl start" (t

Re: Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-11 Thread George Sanderson
At 03:59 PM 8/11/00 -0700, you wrote: >Just curious, but how did you build 5.6.0? Running 5.6.0 and >mdo_perl dso, I got the same thing. Have you tried compiling it >statically? > >On 11 Aug 2000, at 16:52, George Sanderson wrote: >> Let me try this again. >> Rec

Re: Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-11 Thread George Sanderson
Let me try this again. Recap: I have Apache 1.3.12 using mod_perl 1.24 as a DSO, built with Perl 5.6.0 using Apache::AutoIndex 0.08 which is running on Linux 2.2.14. Everything works fine, until, I `apachectl stop`, then add the following to the httpd.conf: PerlModule Apache::AutoIndex When I do

Re: Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-10 Thread George Sanderson
At 10:49 PM 8/10/00 +0200, you wrote: >On Thu, Aug 10, 2000 at 07:39:24AM -0500, George Sanderson wrote: >> At 12:22 PM 8/10/00 +0200, you wrote: >> > >> >with almost the same conf as your, I had a core dump even with httpd >> >-t. I did a strace, and I noticed

Re: httpd.conf directive PerlHandler Apache::Hello->handler errors

2000-08-10 Thread George Sanderson
Ah I C, said the Perl man! Thank you for the clarification. At 09:55 AM 8/10/00 -0500, you wrote: >[EMAIL PROTECTED] (G.W. Haywood) wrote: > >>Hi there, >> >>On Wed, 9 Aug 2000, George Sanderson wrote: >> >>> PerlModule Apache::Hello >>> >>&

httpd.conf directive PerlHandler Apache::Hello->handler errors

2000-08-09 Thread George Sanderson
I have Apache 1.3.12 using mod_perl 1.24 as a DSO, built with Perl 5.6.0 which is running on Linux 2.2.14. When the following is presented in the httpd.conf file: # PerlModule Apache::Hello SetHandler perl-script PerlHandler Apache::Hello->handler # Results in the following error_log output:

Apache 1.3.12/mod_perl 1.24/Perl 5.6.0 crash

2000-08-09 Thread George Sanderson
I have Apache 1.3.12 using mod_perl 1.24 as a DSO, built with Perl 5.6.0 using Apache::AutoIndex 0.08 which is running on Linux 2.2.14. Everything works fine, until, I `apachectl stop`, then add the following to the httpd.conf: PerlModule Apache::AutoIndex When I do `bin/httpd -X` Linux does a